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 ///