]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/inconsistent_struct_constructor.fixed
New upstream version 1.64.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / inconsistent_struct_constructor.fixed
index eb66d1afddce39dfce67d421a7229232b52b2b6f..74ba2f1c5e70bd09c67e02c39d2c52a076bc8164 100644 (file)
@@ -36,7 +36,7 @@ mod without_base {
         // issue #7069.
         new_foo!();
 
-        // Shoule NOT lint because the order is the same as in the definition.
+        // Should NOT lint because the order is the same as in the definition.
         Foo { x, y, z };
 
         // Should NOT lint because z is not a shorthand init.