Skip to content

Commit ed022fc

Browse files
yuk1tycompiler-errors
authored andcommitted
Capitalize the first letter in the Pinning chapter
1 parent 1ef20c7 commit ed022fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/04_pinning/01_chapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ execute_unpin_future(fut); // OK
645645
## Summary
646646

647647
1. If `T: Unpin` (which is the default), then `Pin<'a, T>` is entirely
648-
equivalent to `&'a mut T`. in other words: `Unpin` means it's OK for this type
648+
equivalent to `&'a mut T`. In other words: `Unpin` means it's OK for this type
649649
to be moved even when pinned, so `Pin` will have no effect on such a type.
650650

651651
2. Getting a `&mut T` to a pinned T requires unsafe if `T: !Unpin`.

0 commit comments

Comments
 (0)