We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5585cce commit 8e328beCopy full SHA for 8e328be
library/core/src/mem/maybe_uninit.rs
@@ -410,7 +410,7 @@ impl<T> MaybeUninit<T> {
410
/// (now safely initialized) contents of `self`.
411
///
412
/// As the content is stored inside a `MaybeUninit`, the destructor is not
413
- /// ran for the inner data if the MaybeUninit leaves scope without a call to
+ /// run for the inner data if the MaybeUninit leaves scope without a call to
414
/// [`assume_init`], [`assume_init_drop`], or similar. Code that receives
415
/// the mutable reference returned by this function needs to keep this in
416
/// mind. The safety model of Rust regards leaks as safe, but they are
0 commit comments