Skip to content

Commit c3fd12f

Browse files
tidy
1 parent 6bc1db0 commit c3fd12f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustdoc/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,8 @@ fn check_deprecated_options(matches: &getopts::Matches, diag: &errors::Handler)
716716

717717
for flag in deprecated_flags.into_iter() {
718718
if matches.opt_present(flag) {
719-
let mut err = diag.struct_warn(&format!("the '{}' flag is considered deprecated", flag));
719+
let mut err = diag.struct_warn(&format!("the '{}' flag is considered deprecated",
720+
flag));
720721
err.warn("please see https://github.com/rust-lang/rust/issues/44136");
721722

722723
if *flag == "no-defaults" {

0 commit comments

Comments
 (0)