diff options
| author | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2022-12-12 09:19:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-12 09:19:17 +0100 |
| commit | 736342bb4694b29e96ddc75cc511013780112659 (patch) | |
| tree | bf06805969972ada385be133006b18328cef2274 | |
| parent | 2cd2070af7643ad88d280a4933bc4fb60451e521 (diff) | |
Correct typos in `core::sync::Exclusive::get_{pin_mut, mut}`
| -rw-r--r-- | library/core/src/sync/exclusive.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/sync/exclusive.rs b/library/core/src/sync/exclusive.rs index c65c275000c..301ad41c966 100644 --- a/library/core/src/sync/exclusive.rs +++ b/library/core/src/sync/exclusive.rs @@ -138,7 +138,7 @@ impl<T: ?Sized> Exclusive<T> { unsafe { Pin::new_unchecked(&mut self.get_unchecked_mut().inner) } } - /// Build a _mutable_ references to an `Exclusive<T>` from + /// Build a _mutable_ reference to an `Exclusive<T>` from /// a _mutable_ reference to a `T`. This allows you to skip /// building an `Exclusive` with [`Exclusive::new`]. #[unstable(feature = "exclusive_wrapper", issue = "98407")] @@ -149,7 +149,7 @@ impl<T: ?Sized> Exclusive<T> { unsafe { &mut *(r as *mut T as *mut Exclusive<T>) } } - /// Build a _pinned mutable_ references to an `Exclusive<T>` from + /// Build a _pinned mutable_ reference to an `Exclusive<T>` from /// a _pinned mutable_ reference to a `T`. This allows you to skip /// building an `Exclusive` with [`Exclusive::new`]. #[unstable(feature = "exclusive_wrapper", issue = "98407")] |
