Skip to content

Commit dc026b0

Browse files
ehussMark-Simulacrum
authored andcommitted
Remove mentions of RLS
1 parent a32d8f2 commit dc026b0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/infra/channel-layout.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ There are then a number of top level sections (tables) which are:
7474
`["rustc", "cargo", "rust-std", "rust-docs", "rustfmt", "clippy"]`.
7575

7676
Other profiles include `minimal` (`["rustc", "cargo", "rust-std"]`) and
77-
`complete` which adds in additional tools such as the `rls`, a copy of the
77+
`complete` which adds in additional things such as a copy of the
7878
standard library source (`rust-src`), `miri`, `lldb`, `llvm-tools`, and
7979
`rust-analysis`.
8080

src/infra/docs/rustc-ci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ saw before.
205205
### Toolstate to support allowed failures
206206

207207
The `rust-lang/rust` repo doesn’t only test the compiler on its CI, but also
208-
all the tools distributed through rustup (like rls, rustfmt, clippy…). Since
208+
all the tools distributed through rustup (like miri). Since
209209
those tools rely on the compiler internals (which don’t have any kind of
210210
stability guarantee) they often break after the compiler code is changed.
211211

src/infra/toolstate.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Handling of tools embedded in the rustc repo ("toolstate")
22

33
The Rust repository contains several external tools and documents as git
4-
submodules (e.g. miri, rls, the [Book], the [Reference]). Many of those are
4+
submodules (e.g. miri, the [Book], the [Reference]). Some of those are
55
very tightly coupled to the compiler and depend on internal APIs that change all
66
the time, but they are not actually essential to get the compiler itself to
77
work. To make API changes less painful, these tools are allowed to "break"
@@ -31,8 +31,8 @@ rules are for when which tools are (not) allowed to break.
3131
cut. (See the [Forge index][forge] for when the next beta cutoff is
3232
happening.)
3333

34-
At the time of writing, the following tools are "nightly only": rustc-dev-guide,
35-
miri, RLS, embedded-book.
34+
At the time of writing, the following tools are "nightly only":
35+
miri, embedded-book.
3636

3737
## Updating the toolstate repository
3838

@@ -57,7 +57,7 @@ Tools can be updated by updating the submodule to the proper commit.
5757
Run `git submodule update --remote path/to/submodule`, add the updates, make
5858
sure the tests pass, commit, and send a pull request. The path is from the
5959
root of the rust repository, so for example, the reference is
60-
`src/doc/reference` and rls is `src/tools/rls`.
60+
`src/doc/reference` and miri is `src/tools/miri`.
6161

6262
While not required, [subup] may assist you with this.
6363

0 commit comments

Comments
 (0)