about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/std/src/primitive_docs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/primitive_docs.rs b/library/std/src/primitive_docs.rs
index 682ca3068ee..d00824cfb3e 100644
--- a/library/std/src/primitive_docs.rs
+++ b/library/std/src/primitive_docs.rs
@@ -222,8 +222,8 @@ mod prim_bool {}
 /// The reason is that, in the first example, there are many possible types that `!` could coerce
 /// to, because many types implement `Add<u32>`. However, in the second example,
 /// the `else` branch returns a `0`, which the compiler infers from the return type to be of type
-/// `u32`. Since `u32` is a concrete type, `!` can and will be coerced to it. See issue [#36375] for more
-/// information on this quirk of `!`.
+/// `u32`. Since `u32` is a concrete type, `!` can and will be coerced to it. See issue [#36375]
+/// for more information on this quirk of `!`.
 ///
 /// [#36375]: https://github.com/rust-lang/rust/issues/36375
 ///