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.
2 parents b4abed6 + b643a0b commit d1e31f3Copy full SHA for d1e31f3
src/libcore/any.rs
@@ -14,7 +14,7 @@
14
//! `Any` itself can be used to get a `TypeId`, and has more features when used
15
//! as a trait object. As `&Any` (a borrowed trait object), it has the `is` and
16
//! `as_ref` methods, to test if the contained value is of a given type, and to
17
-//! 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
18
//! the `as_mut` method, for getting a mutable reference to the inner value.
19
//! `Box<Any>` adds the `move` method, which will unwrap a `Box<T>` from the
20
//! object. See the extension traits (`*Ext`) for the full details.
0 commit comments