Skip to content

Commit

Permalink
Update instructions.md to reflect actual map (#1471)
Browse files Browse the repository at this point in the history
The documentation claims:

```
Clothing items are stored as a map:

%{
  item_name: "Descriptive Name",
  price: 99.00,
  base_color: "red"
}
```

While the actual structure is like this in the tests:

``` elixir
%{
  item_name: "Descriptive Name",
  price: 99.00,
  color: "Ochre Red",
  base_color: "red"
}
```
  • Loading branch information
codecakes authored May 25, 2024
1 parent 6855116 commit 8aba4d8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Clothing items are stored as a map:
%{
item_name: "Descriptive Name",
price: 99.00,
color: "Ochre Red",
base_color: "red"
}
```
Expand Down

0 comments on commit 8aba4d8

Please sign in to comment.