Skip to content

Commit

Permalink
Rollup merge of #123842 - ShockYoungCHN:master, r=scottmcm
Browse files Browse the repository at this point in the history
fix typo in pin.rs

correct "implemts" to "implements".
  • Loading branch information
matthiaskrgr committed Apr 12, 2024
2 parents bcf24d6 + 41ac5d9 commit e256d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/pin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ impl<Ptr: Deref<Target: Unpin>> Pin<Ptr> {
/// Unwraps this `Pin<Ptr>`, 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
///
Expand Down

0 comments on commit e256d5f

Please sign in to comment.