We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae4a38 commit e4833e4Copy full SHA for e4833e4
src/types/closure.md
@@ -106,7 +106,7 @@ let z = &x;
106
107
In this case, borrowing `x` mutably is not possible, because `x` is not `mut`.
108
But at the same time, borrowing `x` immutably would make the assignment illegal,
109
-because a `& &mut` reference may not be unique, so it cannot safely be used to
+because a `& &mut` reference might not be unique, so it cannot safely be used to
110
modify a value. So a unique immutable borrow is used: it borrows `x` immutably,
111
but like a mutable borrow, it must be unique. In the above example, uncommenting
112
the declaration of `y` will produce an error because it would violate the
0 commit comments