From 49df06a8540b60adeb196724b7000e061bba7e84 Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Wed, 27 Dec 2017 23:26:47 +0000 Subject: [PATCH] changing readme to stable, fixes #611 --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a4f7186309e..2d6f2297f3e 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,12 @@ rustup self update If you're going to use the VSCode extension, you can skip steps 2 and 3. -### Step 2: Update nightly +### Step 2: Update stable -Update the nightly compiler. You don't have to use it as your default compiler, but it needs to be on your system: +Update the stable compiler. If you require features from nightly you can also update nightly too: ``` -rustup update nightly +rustup update ``` ### Step 3: Install the RLS @@ -59,9 +59,9 @@ rustup update nightly Once you have rustup installed, run the following commands: ``` -rustup component add rls-preview --toolchain nightly -rustup component add rust-analysis --toolchain nightly -rustup component add rust-src --toolchain nightly +rustup component add rls-preview +rustup component add rust-analysis +rustup component add rust-src ``` ## Running