fist sentence might be confusing, so I changed it

This commit is contained in:
Carl Fredrik Samson
2020-04-14 23:56:25 +02:00
parent fbef19b079
commit a2f9535f3e

View File

@@ -15,7 +15,9 @@ it gets significantly easier to reason about.
## Definitions ## Definitions
Pin is only relevant for pointers. A reference to an object is a pointer. Pin wraps a pointer. A reference to an object is a pointer. Pin gives some
guarantees about the _pointee_ (the data it points to) which we'll explore further
in this chapter.
Pin consists of the `Pin` type and the `Unpin` marker. Pin's purpose in life is Pin consists of the `Pin` type and the `Unpin` marker. Pin's purpose in life is
to govern the rules that need to apply for types which implement `!Unpin`. to govern the rules that need to apply for types which implement `!Unpin`.