]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_error_codes/src/error_codes/E0368.md
New upstream version 1.70.0+dfsg1
[rustc.git] / compiler / rustc_error_codes / src / error_codes / E0368.md
index 7b9d93348213120a555931a5139a7c235c393338..b18e8758d712e60ef96f2279efd66ec9cce2c26e 100644 (file)
@@ -41,7 +41,7 @@ impl Add for Foo {
 
 fn main() {
     let mut x: Foo = Foo(5);
-    x += Foo(7); // error, `+= cannot be applied to the type `Foo`
+    x += Foo(7); // error, `+=` cannot be applied to the type `Foo`
 }
 ```