]> git.proxmox.com Git - rustc.git/blobdiff - library/std/src/keyword_docs.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / library / std / src / keyword_docs.rs
index 605bd33a4bf22f9e7546d3cc88f8d673064173c5..749a441d1826361e7c8b324c43db468659726d25 100644 (file)
@@ -2289,7 +2289,7 @@ mod dyn_keyword {}
 /// }
 ///
 /// let mut u = IntOrFloat { f: 1.0 };
-/// // Reading the fields of an union is always unsafe
+/// // Reading the fields of a union is always unsafe
 /// assert_eq!(unsafe { u.i }, 1065353216);
 /// // Updating through any of the field will modify all of them
 /// u.i = 1073741824;