diff options
| author | flip1995 <hello@philkrones.com> | 2020-10-07 15:41:15 +0200 |
|---|---|---|
| committer | flip1995 <philipp.krones@embecosm.com> | 2020-11-24 10:37:15 +0100 |
| commit | 13db749c4bbb85f93f1b256548a468754b70fde3 (patch) | |
| tree | f6f3c96d0a2908810762e5b466ff290e67c97ef9 | |
| parent | 4daa263e0b1073667046d33fba712ad49f7931be (diff) | |
| download | rust-13db749c4bbb85f93f1b256548a468754b70fde3.tar.gz rust-13db749c4bbb85f93f1b256548a468754b70fde3.zip | |
Cleanup message at the end of the lint list output
| -rw-r--r-- | compiler/rustc_driver/src/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs index 014007fc13b..bf8bb555427 100644 --- a/compiler/rustc_driver/src/lib.rs +++ b/compiler/rustc_driver/src/lib.rs @@ -961,10 +961,7 @@ Available lint options: match (loaded_plugins, plugin.len(), plugin_groups.len()) { (false, 0, _) | (false, _, 0) => { - println!( - "Compiler plugins can provide additional lints and lint groups. To see a \ - listing of these, re-run `rustc -W help` with a crate filename." - ); + println!("Compiler plugins can provide additional lints and lint groups."); } (false, ..) => panic!("didn't load lint plugins but got them anyway!"), (true, 0, 0) => println!("This crate does not load any lint plugins or lint groups."), |
