Skip to content

Commit 4093baf

Browse files
authored
Add &mut expr to syntax index
1 parent 0d03d51 commit 4093baf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/syntax-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* `%` (`expr % expr`): arithmetic remainder. Overloadable (`Rem`).
4646
* `%=` (`var %= expr`): arithmetic remainder & assignment. Overloadable (`RemAssign`).
4747
* `&` (`expr & expr`): bitwise and. Overloadable (`BitAnd`).
48-
* `&` (`&expr`): borrow. See [References and Borrowing].
48+
* `&` (`&expr`, `&mut expr`): borrow. See [References and Borrowing].
4949
* `&` (`&type`, `&mut type`, `&'a type`, `&'a mut type`): borrowed pointer type. See [References and Borrowing].
5050
* `&=` (`var &= expr`): bitwise and & assignment. Overloadable (`BitAndAssign`).
5151
* `&&` (`expr && expr`): logical and.

0 commit comments

Comments
 (0)