Skip to content

Commit 31a3fe3

Browse files
committed
---
yaml --- r: 23087 b: refs/heads/master c: 604e4ad h: refs/heads/master i: 23085: e2f82d6 23083: 10629c1 23079: 3a0972e 23071: da34dc0 v: v3
1 parent b3c0a71 commit 31a3fe3

File tree

7 files changed

+433
-100
lines changed

7 files changed

+433
-100
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: d67314d5fcfeb75da8281794f8e6af3583705c2f
2+
refs/heads/master: 604e4add4a59ad05595ab825a17e05174b3940da
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/doc/rust.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1927,15 +1927,13 @@ x <- copy y;
19271927

19281928
The former is just more terse and familiar.
19291929

1930-
#### Compound assignment expressions
1930+
#### Operator-assignment expressions
19311931

19321932
The `+`, `-`, `*`, `/`, `%`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`
19331933
operators may be composed with the `=` operator. The expression `lval
19341934
OP= val` is equivalent to `lval = lval OP val`. For example, `x = x +
19351935
1` may be written as `x += 1`.
19361936

1937-
Any such expression always has the [`nil`](#primitive-types) type.
1938-
19391937
#### Operator precedence
19401938

19411939
The precedence of Rust binary operators is ordered as follows, going

0 commit comments

Comments
 (0)