Skip to content

Commit abe8777

Browse files
committedMar 14, 2019
Add a missing comma
1 parent ee7ad45 commit abe8777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎elixir/compute-intermediate-values-in-a-with-construct.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The expressions you use in a `with` construct do not have to contain the
44
`<-` syntax. You can pattern match and bind values along the way as well.
55

66
```elixir
7-
with %{id: id} <- get_user()
7+
with %{id: id} <- get_user(),
88
url = "/api/#{id}/blogs",
99
%{status_code: 200, body: body} <- HTTPoison.get(url),
1010
{:ok, decoded_body} <- Poison.decode(body) do

0 commit comments

Comments
 (0)
Please sign in to comment.