From 3a1dca09fca7736340747bc60dcb6f3a2815788e Mon Sep 17 00:00:00 2001 From: YenForYang Date: Thu, 10 Dec 2020 13:30:58 -0600 Subject: [PATCH] Fix typo A very minor typo under the Practical Rules for Pinning --- src/4_pin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/4_pin.md b/src/4_pin.md index 183a647..c87a543 100644 --- a/src/4_pin.md +++ b/src/4_pin.md @@ -557,7 +557,7 @@ code. "read only" memory or anything fancy. It only uses the type system to prevent certain operations on this value. -1. Most standard library types implement `Unpin`. The same goes for most +4. Most standard library types implement `Unpin`. The same goes for most "normal" types you encounter in Rust. `Future`s and `Generator`s are two exceptions.