]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_error_codes/src/error_codes/E0576.md
New upstream version 1.71.1+dfsg1
[rustc.git] / compiler / rustc_error_codes / src / error_codes / E0576.md
index 8eead4e7e3b51cd3acb3c8b54adc8eed69a9c1c1..300a57a1985f5d961c4f2976d01d86a67aa5987b 100644 (file)
@@ -10,7 +10,7 @@ trait Hello {
 }
 ```
 
-In this example, we tried to use the non-existent associated type `You` of the
+In this example, we tried to use the nonexistent associated type `You` of the
 `Hello` trait. To fix this error, use an existing associated type:
 
 ```