diff options
author | DJMcNab <[email protected]> | 2018-12-23 11:10:12 +0000 |
---|---|---|
committer | DJMcNab <[email protected]> | 2018-12-23 11:10:12 +0000 |
commit | a0e8538129131b5c7cb770f5e07f9723b4194ca6 (patch) | |
tree | e26f72b7002ea6a3461a11901de73bca3d84c1fb /crates | |
parent | 380733d6d0361271620ece87ed970c994fb8b226 (diff) |
Improve comment
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_lsp_server/src/main.rs | 4 |
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")] |
29 | struct InitializationOptions { | 29 | struct 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 | ||