aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2018-12-23 11:10:12 +0000
committerDJMcNab <[email protected]>2018-12-23 11:10:12 +0000
commita0e8538129131b5c7cb770f5e07f9723b4194ca6 (patch)
treee26f72b7002ea6a3461a11901de73bca3d84c1fb /crates/ra_lsp_server
parent380733d6d0361271620ece87ed970c994fb8b226 (diff)
Improve comment
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/main.rs b/crates/ra_lsp_server/src/main.rs
index 038912de0..721665eed 100644
--- a/crates/ra_lsp_server/src/main.rs
+++ b/crates/ra_lsp_server/src/main.rs
@@ -28,8 +28,8 @@ fn main() -> Result<()> {
28#[serde(rename_all = "camelCase")] 28#[serde(rename_all = "camelCase")]
29struct InitializationOptions { 29struct InitializationOptions {
30 // Whether the client supports our custom highlighting publishing decorations. 30 // Whether the client supports our custom highlighting publishing decorations.
31 // This is different to the highlightingOn setting, which is whether the client 31 // This is different to the highlightingOn setting, which is whether the user
32 // wants highlighting to be used or sent. 32 // wants our custom highlighting to be used.
33 publish_decorations: Option<bool>, 33 publish_decorations: Option<bool>,
34} 34}
35 35