]> git.lizzy.rs Git - rust.git/blobdiff - README.md
Reword is_trait_item description
[rust.git] / README.md
index 29bfebe45838facc9086e8711ec64053d1ae1dc3..e1c968273cdf63ef95eae0633929566df1304e7e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -76,11 +76,10 @@ cargo clippy
 
 #### Automatically applying Clippy suggestions
 
-Clippy can automatically apply some lint suggestions.
-Note that this is still experimental and only supported on the nightly channel:
+Clippy can automatically apply some lint suggestions, just like the compiler.
 
 ```terminal
-cargo clippy --fix -Z unstable-options
+cargo clippy --fix
 ```
 
 #### Workspaces
@@ -96,7 +95,7 @@ As with `cargo check`, this includes dependencies that are members of the worksp
 If you want to run Clippy **only** on the given crate, use the `--no-deps` option like this:
 
 ```terminal
-cargo clippy -p example -- --no-deps 
+cargo clippy -p example -- --no-deps
 ```
 
 ### As a rustc replacement (`clippy-driver`)