project: Fix doc comments for NodeBinarySettings
(#25154)
This PR fixes the doc comments on the `NodeBinarySettings` struct. Release Notes: - N/A
This commit is contained in:
parent
d034687475
commit
8b98b5c82f
1 changed files with 3 additions and 3 deletions
|
@ -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<String>,
|
||||
/// 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<String>,
|
||||
/// 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<bool>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue