diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2017-09-28 18:32:52 +0200 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2017-09-28 18:32:52 +0200 |
commit | e8d5c70baa2cf80eab4d94dd325bd92192017d2d (patch) | |
tree | c29b58bb81d620b0a3c0eb0c43302dcfd9498dfa /lib/elixir/pages | |
parent | c0fd3d265589e15c2af8a434d7f103d838444c00 (diff) | |
download | elixir-e8d5c70baa2cf80eab4d94dd325bd92192017d2d.tar.gz |
Move & up in the operator table to avoid conflicts with | in cons, closes #6613
Diffstat (limited to 'lib/elixir/pages')
-rw-r--r-- | lib/elixir/pages/Operators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elixir/pages/Operators.md b/lib/elixir/pages/Operators.md index 566c13e7b..84217bedf 100644 --- a/lib/elixir/pages/Operators.md +++ b/lib/elixir/pages/Operators.md @@ -20,13 +20,13 @@ Operator `==` `!=` `=~` `===` `!==` | Left to right `&&` `&&&` `and` | Left to right `\|\|` `\|\|\|` `or` | Left to right +`&` | Unary `=` | Right to left `=>` | Right to left `\|` | Right to left `::` | Right to left `when` | Right to left `<-`, `\\` | Left to right -`&` | Unary ## Comparison operators |