finished last review of pin chapter

This commit is contained in:
Carl Fredrik Samson
2020-02-03 23:22:39 +01:00
parent 1310d5fe48
commit c1b548bdf5

View File

@@ -294,8 +294,8 @@ now you need to use a crate like [pin_utils]:[pin_utils] to do that.
### Projection/structural pinning
In short, projection is using a field on your type. `mystruct.field1` is a
projection. Structural pinning is using `Pin` on struct fields. This has several
In short, projection is a programming language term. `mystruct.field1` is a
projection. Structural pinning is using `Pin` on fields. This has several
caveats and is not something you'll normally see so I refer to the documentation
for that.