mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-01 20:31:12 +00:00
doc typo: unnecessary backslashes to represent brackets in markdown (#11059)
There is a small typo in the doc which could mislead users: reference to a table in `pyproject.toml` currently appears as [`\[project.entry-points\]`](https://packaging.python.org/en/latest/guides/creating-and-discovering-plugins/#using-package-metadata) while it should be [`[project.entry-points]`](https://packaging.python.org/en/latest/guides/creating-and-discovering-plugins/#using-package-metadata). Backslashes are appearing because they weren't supposed to be used on code representation in Markdown.
This commit is contained in:
parent
baec42c494
commit
c5ccea2bb1
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ hello = "example:app"
|
|||
### Plugin entry points
|
||||
|
||||
Projects may define entry points for plugin discovery in the
|
||||
[`\[project.entry-points\]`](https://packaging.python.org/en/latest/guides/creating-and-discovering-plugins/#using-package-metadata)
|
||||
[`[project.entry-points]`](https://packaging.python.org/en/latest/guides/creating-and-discovering-plugins/#using-package-metadata)
|
||||
table of the `pyproject.toml`.
|
||||
|
||||
For example, to register the `example-plugin-a` package as a plugin for `example`:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue