Skip to content

Commit 0066869

Browse files
committed
Auto merge of #40455 - frewsxcv:rollup, r=frewsxcv
Rollup of 5 pull requests - Successful merges: #40369, #40390, #40426, #40449, #40453 - Failed merges:
2 parents f88b24b + 3b002a8 commit 0066869

File tree

21 files changed

+356
-135
lines changed

21 files changed

+356
-135
lines changed

src/Cargo.lock

+40-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/libproc_macro/lib.rs

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
#![crate_type = "dylib"]
3030
#![deny(warnings)]
3131
#![deny(missing_docs)]
32+
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
33+
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
34+
html_root_url = "https://doc.rust-lang.org/nightly/",
35+
html_playground_url = "https://play.rust-lang.org/",
36+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
37+
test(no_crate_inject, attr(deny(warnings))),
38+
test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))))]
3239

3340
#![feature(rustc_private)]
3441
#![feature(staged_api)]

src/librustc_driver/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ Available lint options:
738738
Allow <foo>
739739
-D <foo> Deny <foo>
740740
-F <foo> Forbid <foo> \
741-
(deny, and deny all overrides)
741+
(deny <foo> and all attempts to override)
742742
743743
");
744744

0 commit comments

Comments
 (0)