mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
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:
parent
552c75cf49
commit
3a24aecb2c
2 changed files with 6 additions and 6 deletions
|
@ -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" }
|
||||
```
|
||||
|
||||
---
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue