We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a599c8 commit b643a0bCopy full SHA for b643a0b
src/libcore/any.rs
@@ -16,7 +16,7 @@
16
//! `Any` itself can be used to get a `TypeId`, and has more features when used
17
//! as a trait object. As `&Any` (a borrowed trait object), it has the `is` and
18
//! `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
+//! get a reference to the inner value as a type. As `&mut Any`, there is also
20
//! the `as_mut` method, for getting a mutable reference to the inner value.
21
//! `Box<Any>` adds the `move` method, which will unwrap a `Box<T>` from the
22
//! object. See the extension traits (`*Ext`) for the full details.
0 commit comments