]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/mem.rs
Update src/libcore/mem.rs
[rust.git] / src / libcore / mem.rs
index 058c01cdf10077ac008e5cf115c78b4de591236d..40f4354213b40849bf253c7d1bb10bab04a86761 100644 (file)
@@ -966,7 +966,7 @@ fn deref_mut(&mut self) -> &mut T {
 ///
 /// The compiler then knows to not make any incorrect assumptions or optimizations on this code.
 ///
-/// You can think of `MaybeUninit<T>` and being a bit like `Option<T>` but without
+/// You can think of `MaybeUninit<T>` as being a bit like `Option<T>` but without
 /// any of the run-time tracking and without any of the safety checks.
 ///
 /// ## out-pointers