We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57edf88 commit 5956254Copy full SHA for 5956254
compiler/rustc_error_codes/src/error_codes/E0224.md
@@ -1,4 +1,4 @@
1
-A trait object was declaired with no traits.
+A trait object was declared with no traits.
2
3
Erroneous code example:
4
@@ -8,7 +8,7 @@ type Foo = dyn 'static +;
8
9
Rust does not currently support this.
10
11
-To solve ensure the the trait object has at least one trait:
+To solve, ensure that the trait object has at least one trait:
12
13
```
14
type Foo = dyn 'static + Copy;
0 commit comments