diff options
author | ven <vendethiel@hotmail.fr> | 2016-03-04 17:08:57 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-03-04 17:08:57 +0100 |
commit | a7da2cedb659cd888232c88b05b4bba687f7b6f7 (patch) | |
tree | 930ec51bfdab5358b3ac224d0d838ee9c5678802 /elixir.html.markdown | |
parent | 5ad208e3854d43147d77a847d97ba07b0485492c (diff) | |
parent | d88564513fa334263e9e1a03d98f1f9d766c6bca (diff) |
Merge pull request #2173 from jg-you/patch-1
[exlixir/en] Unclear statement on variable scope
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 |