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.
2 parents 5bcb36b + dce2420 commit f5c66e0Copy full SHA for f5c66e0
src/types/pointer.md
@@ -12,7 +12,7 @@ copied, stored into data structs, and returned from functions.
12
These point to memory _owned by some other value_. When a shared reference to
13
a value is created it prevents direct mutation of the value. [Interior
14
mutability] provides an exception for this in certain circumstances. As the
15
-name suggests, any number of shared references to a value may exit. A shared
+name suggests, any number of shared references to a value may exist. A shared
16
reference type is written `&type`, or `&'a type` when you need to specify an
17
explicit lifetime. Copying a reference is a "shallow" operation: it involves
18
only copying the pointer itself, that is, pointers are `Copy`. Releasing a
0 commit comments