]> git.lizzy.rs Git - rust.git/blobdiff - README.md
Auto merge of #5864 - rust-lang:ci_debug, r=Manishearth
[rust.git] / README.md
index 2a30f5e8e530da555be5e391d62fff7d3665b96b..a2984d73641694b500415990e41c25b9b57fbeda 100644 (file)
--- a/README.md
+++ b/README.md
@@ -42,10 +42,8 @@ Table of contents:
 
 ## Usage
 
-Since this is a tool for helping the developer of a library or application
-write better code, it is recommended not to include Clippy as a hard dependency.
-Options include using it as an optional dependency, as a cargo subcommand, or
-as an included feature during build. These options are detailed below.
+Below are instructions on how to use Clippy as a subcommand, compiled from source
+or in Travis CI.
 
 ### As a cargo subcommand (`cargo clippy`)
 
@@ -83,11 +81,11 @@ cargo clippy
 
 #### Automatically applying Clippy suggestions
 
-Some Clippy lint suggestions can be automatically applied by `cargo fix`.
+Clippy can automatically apply some lint suggestions.
 Note that this is still experimental and only supported on the nightly channel:
 
 ```terminal
-cargo fix -Z unstable-options --clippy
+cargo clippy --fix -Z unstable-options
 ```
 
 ### Running Clippy from the command line without installing it