From 8b98b5c82fa0fd916e44cfc6c763974c474bb175 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 19 Feb 2025 08:51:20 -0500 Subject: [PATCH] project: Fix doc comments for `NodeBinarySettings` (#25154) This PR fixes the doc comments on the `NodeBinarySettings` struct. Release Notes: - N/A --- crates/project/src/project_settings.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/project/src/project_settings.rs b/crates/project/src/project_settings.rs index 360d8a952953caffffac30697d5346ac5f7b7388..43751818368c96e7fde08564d95674be9d067825 100644 --- a/crates/project/src/project_settings.rs +++ b/crates/project/src/project_settings.rs @@ -59,11 +59,11 @@ pub struct ProjectSettings { #[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)] pub struct NodeBinarySettings { - /// The path to the node binary + /// The path to the Node binary. pub path: Option, - /// The path to the npm binary Zed should use (defaults to .path/../npm) + /// The path to the npm binary Zed should use (defaults to `.path/../npm`). pub npm_path: Option, - /// If disabled, zed will download its own copy of node. + /// If disabled, Zed will download its own copy of Node. #[serde(default)] pub ignore_system_version: Option, }