summaryrefslogtreecommitdiff
path: root/docs/userguide/pyproject_config.rst
diff options
context:
space:
mode:
authorMathieu Kniewallner <mathieu.kniewallner@gmail.com>2022-03-24 22:15:29 +0100
committerMathieu Kniewallner <mathieu.kniewallner@gmail.com>2022-03-24 22:15:29 +0100
commit135e7d2a491dd68d9be6ac06fc74d4fe727e915d (patch)
tree6adf50c85d2d3cd60403041146c63096309d0bf2 /docs/userguide/pyproject_config.rst
parent4923d1139be9366b3010a6d6e56d4c4980a0ab6e (diff)
downloadpython-setuptools-git-135e7d2a491dd68d9be6ac06fc74d4fe727e915d.tar.gz
Fix `bellow` typo in docs
Diffstat (limited to 'docs/userguide/pyproject_config.rst')
-rw-r--r--docs/userguide/pyproject_config.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/userguide/pyproject_config.rst b/docs/userguide/pyproject_config.rst
index 3988db2f..47c4511e 100644
--- a/docs/userguide/pyproject_config.rst
+++ b/docs/userguide/pyproject_config.rst
@@ -29,7 +29,7 @@ a standard way of specifying *project metadata*.
``Setuptools`` has adopted this standard and will use the information contained
in this file as an input in the build process.
-The example bellow illustrates how to write a ``pyproject.toml`` file that can
+The example below illustrates how to write a ``pyproject.toml`` file that can
be used with ``setuptools``. It contains two TOML tables (identified by the
``[table-header]`` syntax): ``build-system`` and ``project``.
The ``build-system`` table is used to tell the build frontend (e.g.
@@ -91,8 +91,8 @@ Key Value Type (TOML) Notes
``zip-safe`` boolean If not specified, ``setuptools`` will try to guess
a reasonable default for the package
``eager-resources`` array
-``py-modules`` array See tip bellow
-``packages`` array or ``find`` directive See tip bellow
+``py-modules`` array See tip below
+``packages`` array or ``find`` directive See tip below
``package-dir`` table/inline-table Used when explicitly listing ``packages``
``namespace-packages`` array Not necessary if you use :pep:`420`
``package-data`` table/inline-table See :doc:`/userguide/datafiles`