aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-09-21 12:16:48 +0100
committerAleksey Kladov <[email protected]>2018-09-21 12:16:48 +0100
commit885162d71356b948da88ace97cc546d42191907d (patch)
tree655381292a72378bcc940c14dfe8f0931d182295 /README.md
parentf5808b21a423235037a487d877e23deb3e602f37 (diff)
Use more neutral language in the README
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/README.md b/README.md
index ece4bb189..5dcb8e124 100644
--- a/README.md
+++ b/README.md
@@ -42,14 +42,13 @@ powered editor.
42## Current Status and Plans 42## Current Status and Plans
43 43
44Rust analyzer aims to fill the same niche as the official [Rust 44Rust analyzer aims to fill the same niche as the official [Rust
45Language Server](https://github.com/rust-lang-nursery/rls), but 45Language Server](https://github.com/rust-lang-nursery/rls), but uses a
46better. It was created because @matklad is not satisfied with RLS 46significantly different architecture. More details can be found [in
47original starting point and current direction. More details can be 47this
48found [in this 48thread](https://internals.rust-lang.org/t/2019-strategy-for-rustc-and-the-rls/8361),
49thread](https://internals.rust-lang.org/t/2019-strategy-for-rustc-and-the-rls/8361). 49but the core issue is that RLS works in the "wait until user stops
50The core issue is that RLS works in the "wait until user stops typing, 50typing, run the build process, save the results of the analysis" mode,
51run the build process, save the results of the analysis" mode, which 51which arguably is the wrong foundation for IDE.
52arguably is the wrong foundation for IDE (see the thread for details).
53 52
54Rust Analyzer is a hobby project at the moment, there's exactly zero 53Rust Analyzer is a hobby project at the moment, there's exactly zero
55guarantees that it becomes production-ready one day. 54guarantees that it becomes production-ready one day.