From: Felix Rabe Date: Fri, 21 Jun 2019 22:44:31 +0000 (+0200) Subject: Typo X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=eceeedc7b017b069e8755ef2401809c519edd1f6;hp=929b48ec98aaff2239257574b5897f419cec2647;p=rust.git Typo --- diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs index e78a5defdf3..65fd8c83e1c 100644 --- a/src/libstd/primitive_docs.rs +++ b/src/libstd/primitive_docs.rs @@ -120,7 +120,7 @@ mod prim_bool { } /// When implementing this trait for [`String`] we need to pick a type for [`Err`]. And since /// converting a string into a string will never result in an error, the appropriate type is `!`. /// (Currently the type actually used is an enum with no variants, though this is only because `!` -/// was added to Rust at a later date and it may change in the future). With an [`Err`] type of +/// was added to Rust at a later date and it may change in the future.) With an [`Err`] type of /// `!`, if we have to call [`String::from_str`] for some reason the result will be a /// [`Result`] which we can unpack like this: ///