We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d9cf6e + b7f25d5 commit 31a1858Copy full SHA for 31a1858
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