We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf84eb5 commit a1a0aeaCopy full SHA for a1a0aea
src/librustc_error_codes/error_codes/E0195.md
@@ -1,4 +1,5 @@
1
-Your method's lifetime parameters do not match the trait declaration.
+The lifetime parameters of the method do not match the trait declaration.
2
+
3
Erroneous code example:
4
5
```compile_fail,E0195
@@ -16,7 +17,7 @@ impl Trait for Foo {
16
17
}
18
```
19
-The lifetime constraint `'b` for bar() implementation does not match the
20
+The lifetime constraint `'b` for `bar()` implementation does not match the
21
trait declaration. Ensure lifetime declarations match exactly in both trait
22
declaration and implementation. Example:
23
0 commit comments