summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2016-03-04 17:08:57 +0100
committerven <vendethiel@hotmail.fr>2016-03-04 17:08:57 +0100
commita7da2cedb659cd888232c88b05b4bba687f7b6f7 (patch)
tree930ec51bfdab5358b3ac224d0d838ee9c5678802
parent5ad208e3854d43147d77a847d97ba07b0485492c (diff)
parentd88564513fa334263e9e1a03d98f1f9d766c6bca (diff)
Merge pull request #2173 from jg-you/patch-1
[exlixir/en] Unclear statement on variable scope
-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