about summary refs log tree commit diff
path: root/src/libcore/convert.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/convert.rs')
-rw-r--r--src/libcore/convert.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs
index 203be541e49..de34e79f597 100644
--- a/src/libcore/convert.rs
+++ b/src/libcore/convert.rs
@@ -217,7 +217,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