Fix invalid TOML syntax in examples of "config-settings" docs (#5809)
## Summary
The snippet generated TOML errors when I copy/pasted it in my config
file, I believe there was a typo. 👍
## Test Plan
N/A
This commit is contained in:
@@ -76,13 +76,13 @@ specified as `KEY=VALUE` pairs.
|
||||
|
||||
```toml
|
||||
[tool.uv]
|
||||
config-settings = { "editable_mode": "compat" }
|
||||
config-settings = { editable_mode = "compat" }
|
||||
```
|
||||
=== "uv.toml"
|
||||
|
||||
```toml
|
||||
|
||||
config-settings = { "editable_mode": "compat" }
|
||||
config-settings = { editable_mode = "compat" }
|
||||
```
|
||||
|
||||
---
|
||||
@@ -1063,13 +1063,13 @@ specified as `KEY=VALUE` pairs.
|
||||
|
||||
```toml
|
||||
[tool.uv.pip]
|
||||
config-settings = { "editable_mode": "compat" }
|
||||
config-settings = { editable_mode = "compat" }
|
||||
```
|
||||
=== "uv.toml"
|
||||
|
||||
```toml
|
||||
[pip]
|
||||
config-settings = { "editable_mode": "compat" }
|
||||
config-settings = { editable_mode = "compat" }
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user