Skip to content

Commit ffd7f58

Browse files
authored
Fix typo uniqeness -> uniqueness
1 parent e7c468d commit ffd7f58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/boxed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
//! currently implemented in the compiler.**
130130
//!
131131
//! The aliasing rules for `Box<T>` are the same as for `&mut T`. `Box<T>`
132-
//! asserts uniqeness over its content. Using raw pointers derived from a box
132+
//! asserts uniqueness over its content. Using raw pointers derived from a box
133133
//! after that box has been mutated through, moved or borrowed as `&mut T`
134134
//! is not allowed. For more guidance on working with box from unsafe code, see
135135
//! [rust-lang/unsafe-code-guidelines#326][ucg#326].

0 commit comments

Comments
 (0)