Skip to content

Commit 9d54bb2

Browse files
committed
Tidied up E0637.md
1 parent 8c35118 commit 9d54bb2

File tree

1 file changed

+3
-3
lines changed
  • src/librustc_error_codes/error_codes

1 file changed

+3
-3
lines changed

src/librustc_error_codes/error_codes/E0637.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ fn longest<'_>(str1: &'_ str, str2: &'_ str) -> &'_ str {
1313
```
1414
`'_`, cannot be used as a lifetime identifier because it is a reserved for the
1515
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].
16+
of lowercase letters such as `'foo`. For more information, see [the
17+
book][bk-no]. For more information on using the anonymous lifetime in rust
18+
nightly, see [the nightly book][bk-al].
1919

2020
Corrected example:
2121
```

0 commit comments

Comments
 (0)