From 94b6038657fda4d50a3460d22052c03dcdc514f7 Mon Sep 17 00:00:00 2001 From: doki <11144133+doki23@users.noreply.github.com> Date: Mon, 14 Feb 2022 19:30:21 +0800 Subject: [PATCH] correct the description of Struct GlobalState --- crates/rust-analyzer/src/global_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rust-analyzer/src/global_state.rs b/crates/rust-analyzer/src/global_state.rs index bef943464a87..9b4f8b4333a1 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, req_queue: ReqQueue,