summaryrefslogtreecommitdiffstats
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorMihai Maruseac <mihai.maruseac@gmail.com>2024-02-25 16:57:55 -0800
committerMihai Maruseac <mihai.maruseac@gmail.com>2024-02-26 05:20:16 -0800
commitc786e63c704fb13cdfff7ac93285710baf76a603 (patch)
tree2da4213d7c53d912c49e66173f5137b250d57de7 /doc/languages-frameworks
parent29b480c0d442507ddf57f88a8a207a07028b19e6 (diff)
doc: Fix typo resulting in broken link in manual
I was looking at https://nixos.org/manual/nixpkgs/stable/#buildpythonpackage-parameters to import a Python package and noticed that the link for the `hooks` in `pyproject` option is broken due to a typo (used <kbd>0</kbd> instead of <kbd>)</kbd>). Signed-off-by: Mihai Maruseac <mihai.maruseac@gmail.com>
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/python.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index d1b41d84ddc7..6634dced6eb7 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -175,7 +175,7 @@ following are specific to `buildPythonPackage`:
from `build-system.requires` to `build-system`. Note that the pyproject
format falls back to using `setuptools`, so you can use `pyproject = true`
even if the package only has a `setup.py`. When set to `false`, you can
- use the existing [hooks](#setup-hooks0 or provide your own logic to build the
+ use the existing [hooks](#setup-hooks) or provide your own logic to build the
package. This can be useful for packages that don't support the pyproject
format. When unset, the legacy `setuptools` hooks are used for backwards
compatibility.