Skip to content

Commit

Permalink
Auto merge of rust-lang#26725 - tshepang:patch-2, r=bluss
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Jul 2, 2015
2 parents b4abed6 + b643a0b commit d1e31f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/any.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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.
Expand Down

0 comments on commit d1e31f3

Please sign in to comment.