Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5c7a944
Add documentation on the -Z flag on the command-line arguments sectio…
Apr 3, 2019
63080b3
remove lookup_char_pos_adj
matklad Apr 5, 2019
a2d4e85
Uplift `get_def_path` from Clippy
flip1995 Apr 7, 2019
edebed9
compiletest: Improve no_prefer_dynamic docs
phansch Apr 8, 2019
3262d1e
Kill dead code dominator code.
vext01 Apr 9, 2019
d6fd57a
Fix broken links on std::boxed doc page
ollie27 Apr 9, 2019
1ad46cd
Fix links on keyword docs.
ehuss Apr 9, 2019
3e01901
Remove strange formatting in `Ordering` docs.
ehuss Apr 9, 2019
2f97552
Re-export NonZero signed variant in std
tesuji Apr 10, 2019
3826493
std::ops::Div examples: correct nominator to numerator
andersk Apr 10, 2019
404df31
Update ui test
tesuji Apr 10, 2019
7acfa45
Updated the documentation, now claiming the -Z is associated to unsta…
Apr 10, 2019
cdeb745
Updated the description of -Z in the rustc book.
Apr 10, 2019
632b11c
Rollup merge of #59680 - DevQps:document-rustc-z-flag, r=cramertj
sanxiyn Apr 11, 2019
4afd711
Rollup merge of #59735 - matklad:deadcode, r=sanxiyn
sanxiyn Apr 11, 2019
d7fe9cf
Rollup merge of #59779 - flip1995:uplift_get_def_path, r=Manishearth
sanxiyn Apr 11, 2019
be4b820
Rollup merge of #59806 - phansch:compiletest_docs2, r=oli-obk
sanxiyn Apr 11, 2019
e6ac17b
Rollup merge of #59811 - vext01:dead-dominator-code, r=oli-obk
sanxiyn Apr 11, 2019
a05adad
Rollup merge of #59814 - ollie27:dead_boxed_links, r=QuietMisdreavus
sanxiyn Apr 11, 2019
05e00c4
Rollup merge of #59830 - ehuss:keyword-links, r=Mark-Simulacrum
sanxiyn Apr 11, 2019
8e79a95
Rollup merge of #59831 - ehuss:ordering-docs, r=kennytm
sanxiyn Apr 11, 2019
da1748b
Rollup merge of #59835 - lzutao:nonzero-signed, r=Mark-Simulacrum
sanxiyn Apr 11, 2019
83787bb
Rollup merge of #59836 - andersk:nominator, r=Centril
sanxiyn Apr 11, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix broken links on std::boxed doc page
  • Loading branch information
ollie27 committed Apr 9, 2019
commit d6fd57a9706e3c451a5188733d5221d8c66448a9
2 changes: 2 additions & 0 deletions src/liballoc/boxed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
//!
//! [dereferencing]: ../../std/ops/trait.Deref.html
//! [`Box`]: struct.Box.html
//! [`Global`]: ../alloc/struct.Global.html
//! [`Layout`]: ../alloc/struct.Layout.html

#![stable(feature = "rust1", since = "1.0.0")]

Expand Down
2 changes: 1 addition & 1 deletion src/liballoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
#![allow(explicit_outlives_requirements)]

#![warn(deprecated_in_future)]
#![warn(intra_doc_link_resolution_failure)]
#![deny(intra_doc_link_resolution_failure)]
#![warn(missing_debug_implementations)]

#![cfg_attr(not(test), feature(generator_trait))]
Expand Down
2 changes: 1 addition & 1 deletion src/libcore/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

#![warn(deprecated_in_future)]
#![warn(missing_docs)]
#![warn(intra_doc_link_resolution_failure)]
#![deny(intra_doc_link_resolution_failure)]
#![warn(missing_debug_implementations)]

#![feature(allow_internal_unstable)]
Expand Down