Fix broken link and markup in trait Any
docs.
This commit is contained in:
parent
cf51e55274
commit
8fcc5bd6a7
1 changed files with 3 additions and 2 deletions
|
@ -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`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue