File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,11 +82,11 @@ use marker::Sized;
82
82
// Any trait
83
83
///////////////////////////////////////////////////////////////////////////////
84
84
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.
87
86
///
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
90
90
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
91
91
pub trait Any : ' static {
92
92
/// Get the `TypeId` of `self`
You can’t perform that action at this time.
0 commit comments