We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7355816 commit b7f25d5Copy full SHA for b7f25d5
src/librustc_error_codes/error_codes/E0207.md
@@ -1,4 +1,4 @@
1
-A type or lifetime parameter that is specified for `impl` is not constrained.
+A type parameter that is specified for `impl` is not constrained.
2
3
Erroneous code example:
4
@@ -14,7 +14,7 @@ impl<T: Default> Foo {
14
}
15
```
16
17
-Any type parameter or lifetime parameter of an `impl` must meet at least one of
+Any type parameter parameter of an `impl` must meet at least one of
18
the following criteria:
19
20
- it appears in the _implementing type_ of the impl, e.g. `impl<T> Foo<T>`
0 commit comments