Skip to content

Commit e256d5f

Browse files
authored
Rollup merge of #123842 - ShockYoungCHN:master, r=scottmcm
fix typo in pin.rs correct "implemts" to "implements".
2 parents bcf24d6 + 41ac5d9 commit e256d5f

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)