diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-06-24 11:56:18 -0600 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-06-24 11:56:18 -0600 |
commit | ef771384ae672e341ec309cf71cf372143607892 (patch) | |
tree | b939e465a18d23abd7be2ad1c77538af0c6718e2 | |
parent | a87467abf167cdd2e64b4a5dc25be346b06588be (diff) | |
parent | 5e2eed46b23130353122c5bf80be2f3aa2f656bb (diff) |
Merge pull request #1153 from wordofchristian/patch-1
Fix typo in elixer
-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 fb5f183a..c8599838 100644 --- a/elixir.html.markdown +++ b/elixir.html.markdown @@ -195,7 +195,7 @@ cond do "But I will" end -# It is common to see the last condition equal to `true`, which will always match. +# It is common to set the last condition equal to `true`, which will always match. cond do 1 + 1 == 3 -> "I will never be seen" |