]> git.lizzy.rs Git - rust.git/blobdiff - src/main.rs
Fix small nits on the help message
[rust.git] / src / main.rs
index 6ae388401cfcab4094c6004f6bf68140c74e791e..44c3b61d22cc181fd35ec65a663e221f18d01440 100644 (file)
@@ -122,16 +122,16 @@ fn build_controller(&mut self, sess: &Session, matches: &getopts::Matches) -> dr
 
 Other options are the same as `cargo rustc`.
 
-To allow or deny a lint from the command line you can use `cargo clippy --` with
-one of:
+To allow or deny a lint from the command line you can use `cargo clippy --`
+with:
 
     -W --warn OPT       Set lint warnings
     -A --allow OPT      Set lint allowed
     -D --deny OPT       Set lint denied
     -F --forbid OPT     Set lint forbidden
 
-The feature `cargo-clippy` is automatically defined for convinence. You can use
-it to allow or deny lints, eg.:
+The feature `cargo-clippy` is automatically defined for convenience. You can use
+it to allow or deny lints from the code, eg.:
 
     #[cfg_attr(feature = "cargo-clippy", allow(needless_lifetimes))]
 "#;