diff --git a/elixir/compute-intermediate-values-in-a-with-construct.md b/elixir/compute-intermediate-values-in-a-with-construct.md index 0d76e03..c42f4d7 100644 --- a/elixir/compute-intermediate-values-in-a-with-construct.md +++ b/elixir/compute-intermediate-values-in-a-with-construct.md @@ -4,7 +4,7 @@ The expressions you use in a `with` construct do not have to contain the `<-` syntax. You can pattern match and bind values along the way as well. ```elixir -with %{id: id} <- get_user() +with %{id: id} <- get_user(), url = "/api/#{id}/blogs", %{status_code: 200, body: body} <- HTTPoison.get(url), {:ok, decoded_body} <- Poison.decode(body) do