We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c35118 commit 9d54bb2Copy full SHA for 9d54bb2
src/librustc_error_codes/error_codes/E0637.md
@@ -13,9 +13,9 @@ fn longest<'_>(str1: &'_ str, str2: &'_ str) -> &'_ str {
13
```
14
`'_`, cannot be used as a lifetime identifier because it is a reserved for the
15
anonymous lifetime. To fix this, use a lowercase letter such as 'a, or a series
16
-of lowercase letters such as `'foo`. For more information, see [the book][bk-no].
17
-For more information on using the anonymous lifetime in rust nightly, see [the
18
-nightly book][bk-al].
+of lowercase letters such as `'foo`. For more information, see [the
+book][bk-no]. For more information on using the anonymous lifetime in rust
+nightly, see [the nightly book][bk-al].
19
20
Corrected example:
21
0 commit comments