Skip to content

Commit 3a5678c

Browse files
committed
Fix typo "uninitialized"
1 parent 7e808c2 commit 3a5678c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/mem.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub use intrinsics::transmute;
5757
/// There's only a few reasons to use this function. The mainly come
5858
/// up in unsafe code or FFI code.
5959
///
60-
/// * You have an uninitialed value, perhaps for performance reasons, and
60+
/// * You have an uninitialized value, perhaps for performance reasons, and
6161
/// need to prevent the destructor from running on it
6262
/// * You have two copies of a value (like std::mem::swap), but need the
6363
/// destructor to only run once to prevent a double free

0 commit comments

Comments
 (0)