Small documentation fixes (#42397)

Kirill Bulatov and Ole Jørgen Brønner created

Release Notes:

- N/A

Co-authored-by: Ole Jørgen Brønner <olejorgenb@gmail.com>

Change summary

crates/settings/src/settings_content/project.rs | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)

Detailed changes

crates/settings/src/settings_content/project.rs 🔗

@@ -26,7 +26,6 @@ pub struct ProjectSettingsContent {
     /// The following settings can be overridden for specific language servers:
     /// - initialization_options
     ///
-    ///
     /// To override settings for a language, add an entry for that language server's
     /// name to the lsp value.
     /// Default: null
@@ -113,15 +112,13 @@ pub struct LspSettings {
     ///
     /// Ref: https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initialize
     ///
-    /// Consult the documentation for the specific language server to see what settings
-    /// are supported.
+    /// Consult the documentation for the specific language server to see which settings are supported.
     pub initialization_options: Option<serde_json::Value>,
     /// Language server settings.
     ///
     /// Ref: https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#workspace_configuration
     ///
-    /// Consult the documentation for the specific LSP to see what settings
-    /// are supported.
+    /// Consult the documentation for the specific language server to see which settings are supported.
     pub settings: Option<serde_json::Value>,
     /// If the server supports sending tasks over LSP extensions,
     /// this setting can be used to enable or disable them in Zed.