Skip to content

Commit 0031d57

Browse files
committed
1 parent b0aad7d commit 0031d57

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libcore/any.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ use marker::Sized;
8282
// Any trait
8383
///////////////////////////////////////////////////////////////////////////////
8484

85-
/// The `Any` trait is implemented by all `'static` types, and can be used for
86-
/// dynamic typing
85+
/// A type to emulate dynamic typing. See the [module-level documentation][mod] for more details.
8786
///
88-
/// Every type with no non-`'static` references implements `Any`, so `Any` can
89-
/// be used as a trait object to emulate the effects dynamic typing.
87+
/// Every type with no non-`'static` references implements `Any`.
88+
///
89+
/// [mod]: ../index.html
9090
#[stable(feature = "rust1", since = "1.0.0")]
9191
pub trait Any: 'static {
9292
/// Get the `TypeId` of `self`

0 commit comments

Comments
 (0)