Update Readme for (arguably) better readability

Move final instruction to run clippy into a third step in the Readme so it's easier to spot at a quick glance.
This commit is contained in:
Manas Karekar 2019-01-12 19:42:36 -05:00 committed by GitHub
parent 9f9ce06624
commit 09323d7426
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,9 +69,15 @@ Once you have rustup and the latest stable release (at least Rust 1.29) installe
rustup component add clippy
```
Now you can run Clippy by invoking `cargo clippy`.
#### Step 3: Run Clippy
If it says that it can't find the `clippy` subcommand, please run `rustup self update`
Now you can run Clippy by invoking the following command:
```terminal
cargo clippy
```
If it says that it can't find the `clippy` subcommand, please run `rustup self update`.
### Running Clippy from the command line without installing it