about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/librustc_error_codes/error_codes/E0637.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/librustc_error_codes/error_codes/E0637.md b/src/librustc_error_codes/error_codes/E0637.md
index ba81e42ce08..13be5036767 100644
--- a/src/librustc_error_codes/error_codes/E0637.md
+++ b/src/librustc_error_codes/error_codes/E0637.md
@@ -11,8 +11,7 @@ loop. The `_` character, which represents the ignore pattern, cannot be used
 as the identifier because it is a reserved lifetime name. To fix
 this, use a lowercase letter, or a series of lowercase letters as the lifetime
 identifier. Often a single lowercase letter, such as `'a`, is sufficient.  For
-more information, see
-[the book][bk-no].
+more information, see [the book][bk-no].
 
 Corrected underscore example:
 ```