about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@users.noreply.github.com>2024-11-23 19:04:09 +0000
committerGitHub <noreply@github.com>2024-11-23 19:04:09 +0000
commit309c671083006dcc5b16dd023f90cb91d4230002 (patch)
treeb19296163db2fcfffddbbac401f159cb3fe49b81
parent297db65fe35d79899e5f033caac2029ba5b86bbf (diff)
parenta3efe3bc29abbb70da0c2836eef769e40c85dfe9 (diff)
downloadrust-309c671083006dcc5b16dd023f90cb91d4230002.tar.gz
rust-309c671083006dcc5b16dd023f90cb91d4230002.zip
Merge pull request #18548 from markmurphydev/master
Update file path for request.rs entry point in 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 6aa57b2f9be..9c9e05a429b 100644
--- a/src/tools/rust-analyzer/docs/dev/architecture.md
+++ b/src/tools/rust-analyzer/docs/dev/architecture.md
@@ -42,7 +42,7 @@ The underlying engine makes sure that model is computed lazily (on-demand) and c
 `crates/rust-analyzer/src/bin/main.rs` contains the main function which spawns LSP.
 This is *the* entry point, but it front-loads a lot of complexity, so it's fine to just skim through it.
 
-`crates/rust-analyzer/src/handlers/requests.rs` implements all LSP requests and is a great place to start if you are already familiar with LSP.
+`crates/rust-analyzer/src/handlers/request.rs` implements all LSP requests and is a great place to start if you are already familiar with LSP.
 
 `Analysis` and `AnalysisHost` types define the main API for consumers of IDE services.