about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorubsan <npmazzuca@gmail.com>2016-08-06 23:57:18 -0700
committerubsan <npmazzuca@gmail.com>2016-08-06 23:57:18 -0700
commit7c1bb9ae0d76ef0abdb1db34fc2a5e7d62fdf912 (patch)
treef3e34aa96b8f5d437575624f849a15a8cfa23704 /src
parent877dfeb572e330026fc4b4114f16a411c44dc328 (diff)
downloadrust-7c1bb9ae0d76ef0abdb1db34fc2a5e7d62fdf912.tar.gz
rust-7c1bb9ae0d76ef0abdb1db34fc2a5e7d62fdf912.zip
Finish fixing the operator precedence tables
Add the unstable `:` colon and `<-` inplace operators.
Diffstat (limited to 'src')
-rw-r--r--src/doc/reference.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index f4ffe5774d2..f0ab1488d40 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3039,7 +3039,7 @@ The precedence of Rust binary operators is ordered as follows, going from
 strong to weak:
 
 ```{.text .precedence}
-as
+as :
 * / %
 + -
 << >>
@@ -3050,6 +3050,7 @@ as
 &&
 ||
 .. ...
+<-
 =
 ```