Skip to content

Commit f5c66e0

Browse files
authored
Merge pull request #491 from yelite/patch-1
Fix minor typo in pointer types
2 parents 5bcb36b + dce2420 commit f5c66e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/pointer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ copied, stored into data structs, and returned from functions.
1212
These point to memory _owned by some other value_. When a shared reference to
1313
a value is created it prevents direct mutation of the value. [Interior
1414
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
15+
name suggests, any number of shared references to a value may exist. A shared
1616
reference type is written `&type`, or `&'a type` when you need to specify an
1717
explicit lifetime. Copying a reference is a "shallow" operation: it involves
1818
only copying the pointer itself, that is, pointers are `Copy`. Releasing a

0 commit comments

Comments
 (0)