]> git.lizzy.rs Git - rust.git/commitdiff
Update Readme for (arguably) better readability
authorManas Karekar <manaskarekar@users.noreply.github.com>
Sun, 13 Jan 2019 00:42:36 +0000 (19:42 -0500)
committerGitHub <noreply@github.com>
Sun, 13 Jan 2019 00:42:36 +0000 (19:42 -0500)
Move final instruction to run clippy into a third step in the Readme so it's easier to spot at a quick glance.

README.md

index 77ba2daad57eba002502214605896ae30e583a0e..412ccb45b4ea78d5d473a92ea7957ac4403b1c1c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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