Skip to content

Commit d6fd57a

Browse files
committed
Fix broken links on std::boxed doc page
1 parent 3750348 commit d6fd57a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/liballoc/boxed.rs

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@
6363
//!
6464
//! [dereferencing]: ../../std/ops/trait.Deref.html
6565
//! [`Box`]: struct.Box.html
66+
//! [`Global`]: ../alloc/struct.Global.html
67+
//! [`Layout`]: ../alloc/struct.Layout.html
6668
6769
#![stable(feature = "rust1", since = "1.0.0")]
6870

src/liballoc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
#![allow(explicit_outlives_requirements)]
6666

6767
#![warn(deprecated_in_future)]
68-
#![warn(intra_doc_link_resolution_failure)]
68+
#![deny(intra_doc_link_resolution_failure)]
6969
#![warn(missing_debug_implementations)]
7070

7171
#![cfg_attr(not(test), feature(generator_trait))]

src/libcore/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
#![warn(deprecated_in_future)]
6262
#![warn(missing_docs)]
63-
#![warn(intra_doc_link_resolution_failure)]
63+
#![deny(intra_doc_link_resolution_failure)]
6464
#![warn(missing_debug_implementations)]
6565

6666
#![feature(allow_internal_unstable)]

0 commit comments

Comments
 (0)