Skip to content

Commit e6af2ad

Browse files
authored
Rollup merge of rust-lang#123842 - ShockYoungCHN:master, r=scottmcm
fix typo in pin.rs correct "implemts" to "implements".
2 parents 5ae3a55 + b7771f8 commit e6af2ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)