Skip to content

Commit 67e7b9b

Browse files
committed
Auto merge of #75535 - denisvasilik:intra-doc-links-any, r=jyn514
Move to intra-doc links for /library/core/src/any.rs Helps with #75080. @rustbot modify labels: T-doc, A-intra-doc-links, T-rustdoc Known issues: * Links from `core` to `std` (#74481): * `[Box]: ../../std/boxed/struct.Box.html`
2 parents 94d7660 + 75c1e2d commit 67e7b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/any.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ use crate::intrinsics;
7373
/// Most types implement `Any`. However, any type which contains a non-`'static` reference does not.
7474
/// See the [module-level documentation][mod] for more details.
7575
///
76-
/// [mod]: index.html
76+
/// [mod]: crate::any
7777
// This trait is not unsafe, though we rely on the specifics of it's sole impl's
7878
// `type_id` function in unsafe code (e.g., `downcast`). Normally, that would be
7979
// a problem, but because the only impl of `Any` is a blanket implementation, no

0 commit comments

Comments
 (0)