Skip to content

Commit 132e5fb

Browse files
authored
Apply suggestions from code review
1 parent bcdebef commit 132e5fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/using.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Python limited API
7272
Your package may opt in to the :pep:`384` Python Limited API so that a single
7373
binary wheel works with many different versions of Python on the same platform.
7474
For this to work, any C extensions you write needs to make use only of
75-
`certain C functions <https://docs.python.org/3/c-api/stable.html#limited-api-list>`_.
75+
`certain C functions <https://docs.python.org/3/c-api/stable.html#limited-api-list>`__.
7676

7777
To opt in to the Python Limited API, add the following standard setuptools
7878
option to your project's ``setup.cfg`` file::
@@ -83,7 +83,7 @@ option to your project's ``setup.cfg`` file::
8383
Here, ``311`` denotes API compatibility with Python >= 3.11. Replace with the
8484
lowest major and minor version number that you wish to support.
8585

86-
You can also set this option in ``pyproject.toml``, using:
86+
You can also set this option in ``pyproject.toml``, using::
8787

8888
[tool.distutils.bdist_wheel]
8989
py-limited-api = "cp312"

0 commit comments

Comments
 (0)