Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,22 @@ 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

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
Expand Down