We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee7ad45 commit abe8777Copy full SHA for abe8777
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
4
`<-` syntax. You can pattern match and bind values along the way as well.
5
6
```elixir
7
-with %{id: id} <- get_user()
+with %{id: id} <- get_user(),
8
url = "/api/#{id}/blogs",
9
%{status_code: 200, body: body} <- HTTPoison.get(url),
10
{:ok, decoded_body} <- Poison.decode(body) do
0 commit comments