From 82872addf17a110d6182f73bb31ff8d2f949010c Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sun, 30 Jun 2019 19:23:45 +0200 Subject: [PATCH] Add sentence to tell other options are ignored when running check-theme --- src/librustdoc/config.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustdoc/config.rs b/src/librustdoc/config.rs index 068da1f19412..1f7f87354652 100644 --- a/src/librustdoc/config.rs +++ b/src/librustdoc/config.rs @@ -281,12 +281,12 @@ impl Options { // check for deprecated options check_deprecated_options(&matches, &diag); - let to_check = matches.opt_strs("theme-checker"); + let to_check = matches.opt_strs("check-theme"); if !to_check.is_empty() { let paths = theme::load_css_paths(static_files::themes::LIGHT.as_bytes()); let mut errors = 0; - println!("rustdoc: [theme-checker] Starting tests!"); + println!("rustdoc: [check-theme] Starting tests! (Ignoring all other arguments)"); for theme_file in to_check.iter() { print!(" - Checking \"{}\"...", theme_file); let (success, differences) = theme::test_theme_against(theme_file, &paths, &diag); @@ -378,7 +378,7 @@ impl Options { default theme", theme_s)) .warn("the theme may appear incorrect when loaded") .help(&format!("to see what rules are missing, call `rustdoc \ - --theme-checker \"{}\"`", theme_s)) + --check-theme \"{}\"`", theme_s)) .emit(); } themes.push(theme_file);