diff options
author | Jean-Gabriel Young <jean.gabriel.young@gmail.com> | 2016-03-04 11:02:20 -0500 |
---|---|---|
committer | Jean-Gabriel Young <jean.gabriel.young@gmail.com> | 2016-03-04 11:02:20 -0500 |
commit | d88564513fa334263e9e1a03d98f1f9d766c6bca (patch) | |
tree | 930ec51bfdab5358b3ac224d0d838ee9c5678802 /elixir.html.markdown | |
parent | 5ad208e3854d43147d77a847d97ba07b0485492c (diff) |
Update elixir.html.markdown
The variable is only bound in the case statements
Diffstat (limited to 'elixir.html.markdown')
-rw-r--r-- | elixir.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elixir.html.markdown b/elixir.html.markdown index bf3c42a6..eb708576 100644 --- a/elixir.html.markdown +++ b/elixir.html.markdown @@ -170,7 +170,7 @@ case {:one, :two} do {:four, :five} -> "This won't match" {:one, x} -> - "This will match and bind `x` to `:two`" + "This will match and bind `x` to `:two` in this clause" _ -> "This will match any value" end |