about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-07-01 23:08:50 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-07-01 23:08:50 +0200
commitb643a0b67942a0f2bd9450c43749aa9beac43895 (patch)
tree14b5aca7e9abb8fa8b93b7eac84fcda581437c8a
parent8a599c8cef871d842eea0a6217cfce23093d09cf (diff)
downloadrust-b643a0b67942a0f2bd9450c43749aa9beac43895.tar.gz
rust-b643a0b67942a0f2bd9450c43749aa9beac43895.zip
doc: add missing space
-rw-r--r--src/libcore/any.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/any.rs b/src/libcore/any.rs
index f0c77ae866d..38221f76c4d 100644
--- a/src/libcore/any.rs
+++ b/src/libcore/any.rs
@@ -16,7 +16,7 @@
 //! `Any` itself can be used to get a `TypeId`, and has more features when used
 //! as a trait object. As `&Any` (a borrowed trait object), it has the `is` and
 //! `as_ref` methods, to test if the contained value is of a given type, and to
-//! get a reference to the inner value as a type. As`&mut Any`, there is also
+//! get a reference to the inner value as a type. As `&mut Any`, there is also
 //! the `as_mut` method, for getting a mutable reference to the inner value.
 //! `Box<Any>` adds the `move` method, which will unwrap a `Box<T>` from the
 //! object.  See the extension traits (`*Ext`) for the full details.