Skip to content

Commit

Permalink
doc typo: unnecessary backslashes to represent brackets in markdown (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
aureliobarbosa authored Jan 29, 2025
1 parent baec42c commit c5ccea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/concepts/projects/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down

0 comments on commit c5ccea2

Please sign in to comment.