We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a90453a commit 93c21c7Copy full SHA for 93c21c7
src/librustc_typeck/diagnostics.rs
@@ -186,7 +186,7 @@ struct Foo<'a> {
186
```
187
188
This fails because `&mut T` is not `Copy`, even when `T` is `Copy` (this
189
-differs from the behavior for `&T`, which is `Copy` when `T` is `Copy`).
+differs from the behavior for `&T`, which is always `Copy`).
190
"##,
191
192
E0205: r##"
@@ -216,7 +216,7 @@ enum Foo<'a> {
216
217
218
219
220
221
222
E0206: r##"
0 commit comments