File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1159,7 +1159,7 @@ extern "rust-intrinsic" {
1159
1159
/// // At this point, using or dropping `v` results in undefined behavior.
1160
1160
/// // drop(v); // ERROR
1161
1161
///
1162
- /// // Even leaking `v` "uses" it, and henc eis undefined behavior.
1162
+ /// // Even leaking `v` "uses" it, and hence is undefined behavior.
1163
1163
/// // mem::forget(v); // ERROR
1164
1164
///
1165
1165
/// unsafe {
Original file line number Diff line number Diff line change 47
47
//! ## Alignment
48
48
//!
49
49
//! Valid raw pointers as defined above are not necessarily properly aligned (where
50
- //! "proper" alignment is defind by the pointee type, i.e., `*const T` must be
50
+ //! "proper" alignment is defined by the pointee type, i.e., `*const T` must be
51
51
//! aligned to `mem::align_of::<T>()`). However, most functions require their
52
52
//! arguments to be properly aligned, and will explicitly state
53
53
//! this requirement in their documentation. Notable exceptions to this are
You can’t perform that action at this time.
0 commit comments