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 1ef20c7 commit ed022fcCopy full SHA for ed022fc
src/04_pinning/01_chapter.md
@@ -645,7 +645,7 @@ execute_unpin_future(fut); // OK
645
## Summary
646
647
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
+equivalent to `&'a mut T`. In other words: `Unpin` means it's OK for this type
649
to be moved even when pinned, so `Pin` will have no effect on such a type.
650
651
2. Getting a `&mut T` to a pinned T requires unsafe if `T: !Unpin`.
0 commit comments