summaryrefslogtreecommitdiffhomepage
path: root/elixir.html.markdown
diff options
context:
space:
mode:
authorJean-Gabriel Young <jean.gabriel.young@gmail.com>2016-03-04 11:02:20 -0500
committerJean-Gabriel Young <jean.gabriel.young@gmail.com>2016-03-04 11:02:20 -0500
commitd88564513fa334263e9e1a03d98f1f9d766c6bca (patch)
tree930ec51bfdab5358b3ac224d0d838ee9c5678802 /elixir.html.markdown
parent5ad208e3854d43147d77a847d97ba07b0485492c (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.markdown2
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