about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-03-24 12:15:49 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-03-24 12:15:49 -0400
commit0031d57a2107546d3763a0cfd867189a64fac77b (patch)
tree6b8d123e7443c0ab5ddcc1d91bb002de77415d96
parentb0aad7dd4fad8d7e2e2f877a511a637258949597 (diff)
downloadrust-0031d57a2107546d3763a0cfd867189a64fac77b.tar.gz
rust-0031d57a2107546d3763a0cfd867189a64fac77b.zip
Clean up Any's title line
http://www.reddit.com/r/rust/comments/304q00/type_information_in_rust/cpp43lu
-rw-r--r--src/libcore/any.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/any.rs b/src/libcore/any.rs
index 3938a610668..c94d8e2ed0c 100644
--- a/src/libcore/any.rs
+++ b/src/libcore/any.rs
@@ -82,11 +82,11 @@ use marker::Sized;
 // Any trait
 ///////////////////////////////////////////////////////////////////////////////
 
-/// The `Any` trait is implemented by all `'static` types, and can be used for
-/// dynamic typing
+/// A type to emulate dynamic typing. See the [module-level documentation][mod] for more details.
 ///
-/// Every type with no non-`'static` references implements `Any`, so `Any` can
-/// be used as a trait object to emulate the effects dynamic typing.
+/// Every type with no non-`'static` references implements `Any`.
+///
+/// [mod]: ../index.html
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait Any: 'static {
     /// Get the `TypeId` of `self`