From b3467b0302705783f1dcb1a6b82430dae25252ce Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Tue, 20 Jul 2021 09:55:58 -0500 Subject: [PATCH] fix: Fix typo in documentation --- apps/core/guides/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/core/guides/tutorial.md b/apps/core/guides/tutorial.md index 95a0186d..9c9e493b 100644 --- a/apps/core/guides/tutorial.md +++ b/apps/core/guides/tutorial.md @@ -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 ```