We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bc1db0 commit c3fd12fCopy full SHA for c3fd12f
src/librustdoc/lib.rs
@@ -716,7 +716,8 @@ fn check_deprecated_options(matches: &getopts::Matches, diag: &errors::Handler)
716
717
for flag in deprecated_flags.into_iter() {
718
if matches.opt_present(flag) {
719
- let mut err = diag.struct_warn(&format!("the '{}' flag is considered deprecated", flag));
+ let mut err = diag.struct_warn(&format!("the '{}' flag is considered deprecated",
720
+ flag));
721
err.warn("please see https://github.com/rust-lang/rust/issues/44136");
722
723
if *flag == "no-defaults" {
0 commit comments