diff options
Diffstat (limited to 'elixir.html.markdown')
| -rw-r--r-- | elixir.html.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/elixir.html.markdown b/elixir.html.markdown index 720e080c..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 @@ -411,7 +411,7 @@ self() #=> #PID<0.27.0>  ## References -* [Getting started guide](http://elixir-lang.org/getting_started/1.html) from [elixir webpage](http://elixir-lang.org) +* [Getting started guide](http://elixir-lang.org/getting-started/introduction.html) from the [Elixir website](http://elixir-lang.org)  * [Elixir Documentation](http://elixir-lang.org/docs/master/)  * ["Programming Elixir"](https://pragprog.com/book/elixir/programming-elixir) by Dave Thomas  * [Elixir Cheat Sheet](http://media.pragprog.com/titles/elixir/ElixirCheat.pdf) | 
