]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/union/union-nonzero.rs
Rollup merge of #102412 - joboet:dont_panic, r=m-ou-se
[rust.git] / src / test / ui / union / union-nonzero.rs
index d29e7a97180cf633d44f1d754a172c68682f0b8e..3f4f7ea1c10c39291d3aa798d1c87a1d162d4d88 100644 (file)
@@ -13,7 +13,7 @@
 // optimizations to types containing unions even if they're theoretically possible. (discussion:
 // https://github.com/rust-lang/rust/issues/36394)
 //
-// Notably this nails down part of the behavior that `MaybeUninit` assumes: that a
+// Notably this nails down part of the behavior that `MaybeUninit` assumes: that an
 // `Option<MaybeUninit<&u8>>` does not take advantage of non-zero optimization, and thus is a safe
 // construct.