Merge branch 'fix-tutorial' into 'master'

fix: Fix typo in documentation

See merge request mythic-insight/legendary!91
This commit is contained in:
Robert Prehn 2021-07-20 15:02:00 +00:00
commit c8c5bc3057

View file

@ -301,7 +301,7 @@ We also need to filter the items shown based on the current user. In inventory.e
```elixir
def list_items(user_id) do
Item
|> where(owner_id: user_id)
|> where(owner_id: ^user_id)
|> Repo.all()
end
```