about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-08-05 16:12:59 +0200
committerGitHub <noreply@github.com>2016-08-05 16:12:59 +0200
commit6597a28144cb18efbdf605f17c83f14f4e63a52a (patch)
tree3a0dcceb26092be85ddefb9028146d2649fbe54d
parenta7b443fd85db4b47dc3399ba6f47db68e87f00f7 (diff)
parent76babf9c8ee412b5e4ff492ddd1b5248547c825e (diff)
downloadrust-6597a28144cb18efbdf605f17c83f14f4e63a52a.tar.gz
rust-6597a28144cb18efbdf605f17c83f14f4e63a52a.zip
Rollup merge of #35324 - ubsan:precedence, r=steveklabnik
Fix precedence table in reference

Adds `..` and `...` and puts them above `=`

r? @steveklabnik
-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 a461023642a..f4ffe5774d2 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3049,7 +3049,8 @@ as
 == != < > <= >=
 &&
 ||
-= ..
+.. ...
+=
 ```
 
 Operators at the same precedence level are evaluated left-to-right. [Unary