1
Fork 0

Fix broken link and markup in trait Any docs.

This commit is contained in:
Matt Brubeck 2015-04-06 08:36:37 -07:00
parent cf51e55274
commit 8fcc5bd6a7

View file

@ -83,11 +83,12 @@ use marker::{Reflect, Sized};
// Any trait // Any trait
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
/// A type to emulate dynamic typing. See the [module-level documentation][mod] for more details. /// A type to emulate dynamic typing.
/// ///
/// Every type with no non-`'static` references implements `Any`. /// Every type with no non-`'static` references implements `Any`.
/// See the [module-level documentation][mod] for more details.
/// ///
/// [mod]: ../index.html /// [mod]: index.html
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub trait Any: Reflect + 'static { pub trait Any: Reflect + 'static {
/// Get the `TypeId` of `self` /// Get the `TypeId` of `self`