Skip to content

Commit 41ac5d9

Browse files
fix pin.rs typo
correct "implemts" to "implements"
1 parent 6475796 commit 41ac5d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/pin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ impl<Ptr: Deref<Target: Unpin>> Pin<Ptr> {
11981198
/// Unwraps this `Pin<Ptr>`, returning the underlying pointer.
11991199
///
12001200
/// Doing this operation safely requires that the data pointed at by this pinning pointer
1201-
/// implemts [`Unpin`] so that we can ignore the pinning invariants when unwrapping it.
1201+
/// implements [`Unpin`] so that we can ignore the pinning invariants when unwrapping it.
12021202
///
12031203
/// # Examples
12041204
///

0 commit comments

Comments
 (0)