about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev/architecture.md
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-08-09 07:06:02 +0200
committerGitHub <noreply@github.com>2022-08-09 07:06:02 +0200
commitcacd37ac3c7aefb1f00bb20bcdf2bc30a7252e60 (patch)
treebe8614cfe1105b429d3f4f802f5e14f3d3c2ea60 /src/tools/rust-analyzer/docs/dev/architecture.md
parente20fabb6d573d503d2863fb7619257a0701cc293 (diff)
parentf1e801be71ce93a746d984d1f0e6590c866a800c (diff)
Rollup merge of #100303 - lnicola:rust-analyzer-2022-08-09, r=lnicola
:arrow_up: rust-analyzer

r? `@ghost`
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev/architecture.md')
-rw-r--r--src/tools/rust-analyzer/docs/dev/architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/architecture.md b/src/tools/rust-analyzer/docs/dev/architecture.md
index ea4035baf11..51e26c58a91 100644
--- a/src/tools/rust-analyzer/docs/dev/architecture.md
+++ b/src/tools/rust-analyzer/docs/dev/architecture.md
@@ -371,7 +371,7 @@ That is, rust-analyzer requires unwinding.
 
 ### Testing
 
-Rust Analyzer has three interesting [system boundaries](https://www.tedinski.com/2018/04/10/making-tests-a-positive-influence-on-design.html) to concentrate tests on.
+rust-analyzer has three interesting [system boundaries](https://www.tedinski.com/2018/04/10/making-tests-a-positive-influence-on-design.html) to concentrate tests on.
 
 The outermost boundary is the `rust-analyzer` crate, which defines an LSP interface in terms of stdio.
 We do integration testing of this component, by feeding it with a stream of LSP requests and checking responses.