diff options
| author | Josh White <jwhite927@gmail.com> | 2020-02-08 16:26:09 -0500 |
|---|---|---|
| committer | Josh White <jwhite927@gmail.com> | 2020-02-08 16:26:09 -0500 |
| commit | 9d54bb28b30d26688f71cff672c68ed4fe00ab1e (patch) | |
| tree | bfffd3d18a9dd8889e82ef2f19f536c486e7b258 | |
| parent | 8c351182de955b3dea73681a1e3b3eb6afb0edca (diff) | |
| download | rust-9d54bb28b30d26688f71cff672c68ed4fe00ab1e.tar.gz rust-9d54bb28b30d26688f71cff672c68ed4fe00ab1e.zip | |
Tidied up E0637.md
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0637.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_error_codes/error_codes/E0637.md b/src/librustc_error_codes/error_codes/E0637.md index f21b1749ec7..e114d3d0f94 100644 --- a/src/librustc_error_codes/error_codes/E0637.md +++ b/src/librustc_error_codes/error_codes/E0637.md @@ -13,9 +13,9 @@ fn longest<'_>(str1: &'_ str, str2: &'_ str) -> &'_ str { ``` `'_`, cannot be used as a lifetime identifier because it is a reserved for the anonymous lifetime. To fix this, use a lowercase letter such as 'a, or a series -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]. +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]. Corrected example: ``` |
