about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2020-04-16 21:35:19 +0200
committerMatthias Krüger <matthias.krueger@famsik.de>2020-04-16 22:19:11 +0200
commit65bc234c5ca8d844d642fcb96a726b7a7438698f (patch)
tree41a5b1e877a0350efb89f000abda1173263d42df
parent1765c5da908a676215184f94e8021b3c37a10980 (diff)
downloadrust-65bc234c5ca8d844d642fcb96a726b7a7438698f.tar.gz
rust-65bc234c5ca8d844d642fcb96a726b7a7438698f.zip
readme: update to cargo clippy --fix command
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2a30f5e8e53..222b81023a7 100644
--- a/README.md
+++ b/README.md
@@ -83,11 +83,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