diff --git a/crates/uv-workspace/src/pyproject.rs b/crates/uv-workspace/src/pyproject.rs index 6b2cc9930..d4300493c 100644 --- a/crates/uv-workspace/src/pyproject.rs +++ b/crates/uv-workspace/src/pyproject.rs @@ -343,7 +343,7 @@ pub struct ToolUv { /// The list of `dependency-groups` to install by default. /// - /// Can also be the literal "all" to default enable all groups. + /// Can also be the literal `"all"` to default enable all groups. #[option( default = r#"["dev"]"#, value_type = r#"str | list[str]"#, diff --git a/docs/reference/settings.md b/docs/reference/settings.md index bcd3a170f..4f47f998f 100644 --- a/docs/reference/settings.md +++ b/docs/reference/settings.md @@ -112,7 +112,7 @@ constraint-dependencies = ["grpcio<1.65"] The list of `dependency-groups` to install by default. -Can also be the literal "all" to default enable all groups. +Can also be the literal `"all"` to default enable all groups. **Default value**: `["dev"]` diff --git a/uv.schema.json b/uv.schema.json index 9585b9779..cc69c5909 100644 --- a/uv.schema.json +++ b/uv.schema.json @@ -119,7 +119,7 @@ } }, "default-groups": { - "description": "The list of `dependency-groups` to install by default.\n\nCan also be the literal \"all\" to default enable all groups.", + "description": "The list of `dependency-groups` to install by default.\n\nCan also be the literal `\"all\"` to default enable all groups.", "anyOf": [ { "$ref": "#/definitions/DefaultGroups"