diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-02-14 12:05:21 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-14 12:05:21 +0000 |
| commit | 0247e5067606a0b642fcfa463a26acfaf8a26557 (patch) | |
| tree | 2f8ae04a2ea70221d5a9c4b84f9ac2c1d1ab02d7 | |
| parent | 02904e99acc3daf39b56ed18aa07e62aeb9492c5 (diff) | |
| parent | 94b6038657fda4d50a3460d22052c03dcdc514f7 (diff) | |
| download | rust-0247e5067606a0b642fcfa463a26acfaf8a26557.tar.gz rust-0247e5067606a0b642fcfa463a26acfaf8a26557.zip | |
Merge #11470
11470: correct the description of Struct GlobalState r=lnicola a=doki23 Fixes #11469 The description of GlobalState should be 'more than one impl' Co-authored-by: doki <11144133+doki23@users.noreply.github.com>
| -rw-r--r-- | crates/rust-analyzer/src/global_state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/global_state.rs b/crates/rust-analyzer/src/global_state.rs index bef943464a8..9b4f8b4333a 100644 --- a/crates/rust-analyzer/src/global_state.rs +++ b/crates/rust-analyzer/src/global_state.rs @@ -46,7 +46,7 @@ pub(crate) type ReqQueue = lsp_server::ReqQueue<(String, Instant), ReqHandler>; /// snapshot of the file systems, and `analysis_host`, which stores our /// incremental salsa database. /// -/// Note that this struct has more than on impl in various modules! +/// Note that this struct has more than one impl in various modules! pub(crate) struct GlobalState { sender: Sender<lsp_server::Message>, req_queue: ReqQueue, |
