Skip to content

Commit

Permalink
fix pin.rs typo
Browse files Browse the repository at this point in the history
correct "implemts" to "implements"
  • Loading branch information
ShockYoungCHN committed Apr 12, 2024
1 parent 6475796 commit 41ac5d9
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 41ac5d9

Please sign in to comment.