Skip to content

Commit 85effb9

Browse files
steveklabnikalexcrichton
authored andcommitted
Improve ambiguous pronoun.
Fixes #14806
1 parent b18c4cf commit 85effb9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/doc/tutorial.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1488,9 +1488,10 @@ For a more in-depth explanation of references and lifetimes, read the
14881488

14891489
## Freezing
14901490

1491-
Lending an &-pointer to an object freezes it and prevents mutation—even if the object was declared as `mut`.
1492-
`Freeze` objects have freezing enforced statically at compile-time. An example
1493-
of a non-`Freeze` type is [`RefCell<T>`][refcell].
1491+
Lending an &-pointer to an object freezes the pointed-to object and prevents
1492+
mutation—even if the object was declared as `mut`. `Freeze` objects have
1493+
freezing enforced statically at compile-time. An example of a non-`Freeze` type
1494+
is [`RefCell<T>`][refcell].
14941495

14951496
~~~~
14961497
let mut x = 5;

0 commit comments

Comments
 (0)