diff options
| author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2016-08-08 13:25:57 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-08 13:25:57 -0700 |
| commit | 936a6dfea5e02e19532d94f7f2072c72eb17fb63 (patch) | |
| tree | 1f14bb0c781961e69ba703e4b021d2ad755c1f8f /src/doc/reference.md | |
| parent | c479f0210cb1e619f7e9b0ab84d527cc92178e67 (diff) | |
| parent | 7c1bb9ae0d76ef0abdb1db34fc2a5e7d62fdf912 (diff) | |
| download | rust-936a6dfea5e02e19532d94f7f2072c72eb17fb63.tar.gz rust-936a6dfea5e02e19532d94f7f2072c72eb17fb63.zip | |
Rollup merge of #35452 - ubsan:precedence, r=steveklabnik
Finish fixing the operator precedence tables Add the unstable `:` colon and `<-` inplace operators. r? @steveklabnik
Diffstat (limited to 'src/doc/reference.md')
| -rw-r--r-- | src/doc/reference.md | 3 |
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 && || .. ... +<- = ``` |
