Skip to content

Commit 98a5096

Browse files
committed
✏️ Fix typo and reST syntax
1 parent b89d4e0 commit 98a5096

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/install.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,6 @@ installed, this should not be a problem.
2929
One disadvantage is that you have to return to the website regularly to
3030
check for security updates as there is no integrated auto-updater.
3131

32-
.. _various-python-versions:
33-
34-
If different Python versions are required, for example to test libraries with
35-
:doc:`test/tox`, I use `uv <https://docs.astral.sh/uv/guides/install-python/>`_.
36-
This allows not only older CPython versions to be installed but also `PyPy
37-
<https://pypy.org>`_ or free-threaded Python 3.13 with ``uv python install
38-
[email protected]`` or ``uv python install 3.13t``.
39-
4032
.. tab:: macOS
4133

4234
You can obtain Python directly from https://www.python.org/downloads/macos/.
@@ -79,6 +71,14 @@ [email protected]`` or ``uv python install 3.13t``.
7971
One disadvantage is that you have to return to the website regularly to
8072
check for security updates, as there is no integrated auto-updater.
8173

74+
.. _various-python-versions:
75+
76+
If different Python versions are required, for example to test libraries with
77+
:doc:`test/tox`, I use `uv <https://docs.astral.sh/uv/guides/install-python/>`_.
78+
This allows not only older CPython versions to be installed but also `PyPy
79+
<https://pypy.org>`_ or free-threaded Python 3.13 with ``uv python install
80+
[email protected]`` or ``uv python install 3.13t``.
81+
8282
.. tip::
8383
`direnv <https://direnv.net>`_ allows you to set environment variables
8484
depending on the directory. This allows you to install environment variables

docs/types/sets.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ Summary
7878
-------
7979

8080
However, the speed advantage also comes at a price: sets do not keep the
81-
elements elements in the correct order, whereas :doc:`lists` and :doc:`tuples`
82-
do. If the order is important to you, you should use a data structure that
83-
remembers the order.
81+
elements in the correct order, whereas :doc:`lists` and :doc:`tuples` do. If the
82+
order is important to you, you should use a data structure that remembers the
83+
order.
8484

8585
+---------------+---------------+---------------+---------------+---------------+
8686
| data type | mutable | ordered | indexed | duplicates |

0 commit comments

Comments
 (0)