]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/convert.rs
Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik
[rust.git] / src / libcore / convert.rs
index d4a1d15e4e7e1a04649bffbda5fa9d7b8ad5c4a8..4a7c6e15a4df1bf947384c8304ffc2cc290feb54 100644 (file)
@@ -220,7 +220,7 @@ pub trait AsMut<T: ?Sized> {
 ///
 /// There is one exception to implementing `Into`, and it's kind of esoteric.
 /// If the destination type is not part of the current crate, and it uses a
-/// generic variable, then you can't implement `From` directly.  For example,
+/// generic variable, then you can't implement `From` directly. For example,
 /// take this crate:
 ///
 /// ```compile_fail