Skip to content

Commit

Permalink
Unrolled build for rust-lang#123842
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#123842 - ShockYoungCHN:master, r=scottmcm

fix typo in pin.rs

correct "implemts" to "implements".
  • Loading branch information
rust-timer authored Apr 12, 2024
2 parents 7bdae13 + 41ac5d9 commit 638838a
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 638838a

Please sign in to comment.