From abe8777c32bf415c99a47e90201a14b29af3c688 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 14 Mar 2019 16:23:31 -0500 Subject: [PATCH] Add a missing comma --- elixir/compute-intermediate-values-in-a-with-construct.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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