From 41ac5d93d6c9d8bb3977e84f0926b9cfd08843b6 Mon Sep 17 00:00:00 2001 From: Yuanzhuo Yang <89326662+ShockYoungCHN@users.noreply.github.com> Date: Fri, 12 Apr 2024 01:28:58 -0500 Subject: [PATCH] fix pin.rs typo correct "implemts" to "implements" --- library/core/src/pin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/pin.rs b/library/core/src/pin.rs index c18dbafff16..efd525aeb3b 100644 --- a/library/core/src/pin.rs +++ b/library/core/src/pin.rs @@ -1198,7 +1198,7 @@ impl> Pin { /// Unwraps this `Pin`, returning the underlying pointer. /// /// Doing this operation safely requires that the data pointed at by this pinning pointer - /// implemts [`Unpin`] so that we can ignore the pinning invariants when unwrapping it. + /// implements [`Unpin`] so that we can ignore the pinning invariants when unwrapping it. /// /// # Examples ///