From c1b548bdf5bb89bb039c1493f2fb47db262d1c42 Mon Sep 17 00:00:00 2001 From: Carl Fredrik Samson Date: Mon, 3 Feb 2020 23:22:39 +0100 Subject: [PATCH] finished last review of pin chapter --- src/4_pin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/4_pin.md b/src/4_pin.md index 95813e3..3b656fe 100644 --- a/src/4_pin.md +++ b/src/4_pin.md @@ -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.