@@ -749,7 +749,7 @@ pub trait Pointer<T: ?Sized + Pointable> {
749
749
/// # Safety
750
750
///
751
751
/// The given `data` should have been created by `Pointer::into_usize()`, and one `data` should
752
- /// not be converted back by `Pointer::from_usize()` mutliple times.
752
+ /// not be converted back by `Pointer::from_usize()` multiple times.
753
753
unsafe fn from_usize ( data : usize ) -> Self ;
754
754
}
755
755
@@ -801,7 +801,7 @@ impl<T> Owned<T> {
801
801
/// # Safety
802
802
///
803
803
/// The given `raw` should have been derived from `Owned`, and one `raw` should not be converted
804
- /// back by `Owned::from_raw()` mutliple times.
804
+ /// back by `Owned::from_raw()` multiple times.
805
805
///
806
806
/// # Examples
807
807
///
@@ -1108,7 +1108,7 @@ impl<'g, T: ?Sized + Pointable> Shared<'g, T> {
1108
1108
///
1109
1109
/// Dereferencing a pointer is unsafe because it could be pointing to invalid memory.
1110
1110
///
1111
- /// Another concern is the possiblity of data races due to lack of proper synchronization.
1111
+ /// Another concern is the possibility of data races due to lack of proper synchronization.
1112
1112
/// For example, consider the following scenario:
1113
1113
///
1114
1114
/// 1. A thread creates a new object: `a.store(Owned::new(10), Relaxed)`
@@ -1188,7 +1188,7 @@ impl<'g, T: ?Sized + Pointable> Shared<'g, T> {
1188
1188
///
1189
1189
/// Dereferencing a pointer is unsafe because it could be pointing to invalid memory.
1190
1190
///
1191
- /// Another concern is the possiblity of data races due to lack of proper synchronization.
1191
+ /// Another concern is the possibility of data races due to lack of proper synchronization.
1192
1192
/// For example, consider the following scenario:
1193
1193
///
1194
1194
/// 1. A thread creates a new object: `a.store(Owned::new(10), Relaxed)`
0 commit comments