diff options
| author | Nick Cameron <ncameron@mozilla.com> | 2018-12-06 11:11:50 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-06 11:11:50 -0500 |
| commit | 7220185560d7f748c342199f2b1c4ac570e2e58c (patch) | |
| tree | 3e49e670cd29103d7610169778917005a8351531 | |
| parent | c4ef06a9b6ab1eecac106bf2d72c95209687d57a (diff) | |
| download | rust-7220185560d7f748c342199f2b1c4ac570e2e58c.tar.gz rust-7220185560d7f748c342199f2b1c4ac570e2e58c.zip | |
Remove -preview suffix from README
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md index 92bb4586688..49c0a1f1546 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ rustup update Once you have rustup and the latest stable release (at least Rust 1.29) installed, run the following command: ```terminal -rustup component add clippy-preview +rustup component add clippy ``` Now you can run Clippy by invoking `cargo clippy`. @@ -95,7 +95,7 @@ rust: - stable - beta before_script: - - rustup component add clippy-preview + - rustup component add clippy script: - cargo clippy # if you want the build job to fail when encountering warnings, use @@ -114,7 +114,7 @@ language: rust rust: - nightly before_script: - - rustup component add clippy-preview --toolchain=nightly || cargo install --git https://github.com/rust-lang/rust-clippy/ --force clippy + - rustup component add clippy --toolchain=nightly || cargo install --git https://github.com/rust-lang/rust-clippy/ --force clippy # etc ``` |
