Skip to content

Commit b643a0b

Browse files
committed
doc: add missing space
1 parent 8a599c8 commit b643a0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/any.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! `Any` itself can be used to get a `TypeId`, and has more features when used
1717
//! as a trait object. As `&Any` (a borrowed trait object), it has the `is` and
1818
//! `as_ref` methods, to test if the contained value is of a given type, and to
19-
//! get a reference to the inner value as a type. As`&mut Any`, there is also
19+
//! get a reference to the inner value as a type. As `&mut Any`, there is also
2020
//! the `as_mut` method, for getting a mutable reference to the inner value.
2121
//! `Box<Any>` adds the `move` method, which will unwrap a `Box<T>` from the
2222
//! object. See the extension traits (`*Ext`) for the full details.

0 commit comments

Comments
 (0)