Skip to content

Commit 8fcc5bd

Browse files
committed
Fix broken link and markup in trait Any docs.
1 parent cf51e55 commit 8fcc5bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libcore/any.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,12 @@ use marker::{Reflect, Sized};
8383
// Any trait
8484
///////////////////////////////////////////////////////////////////////////////
8585

86-
/// A type to emulate dynamic typing. See the [module-level documentation][mod] for more details.
86+
/// A type to emulate dynamic typing.
8787
///
8888
/// Every type with no non-`'static` references implements `Any`.
89+
/// See the [module-level documentation][mod] for more details.
8990
///
90-
/// [mod]: ../index.html
91+
/// [mod]: index.html
9192
#[stable(feature = "rust1", since = "1.0.0")]
9293
pub trait Any: Reflect + 'static {
9394
/// Get the `TypeId` of `self`

0 commit comments

Comments
 (0)