diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2024-05-26 01:13:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 01:13:31 (GMT) |
commit | d25954dff5409c8926d2a4053d3e892462f8b8b5 (patch) | |
tree | 46819604087f2ebf16bbdec8532127180496c0db /Doc/tutorial | |
parent | e418fc3a6e7bade68ab5dfe72f14ddba28e6acb5 (diff) | |
download | cpython-d25954dff5409c8926d2a4053d3e892462f8b8b5.zip cpython-d25954dff5409c8926d2a4053d3e892462f8b8b5.tar.gz cpython-d25954dff5409c8926d2a4053d3e892462f8b8b5.tar.bz2 |
docs: fix a few typos identified by codespell (#119516)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/venv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/venv.rst b/Doc/tutorial/venv.rst index 6cca3f1..91e4ce1 100644 --- a/Doc/tutorial/venv.rst +++ b/Doc/tutorial/venv.rst @@ -38,7 +38,7 @@ Creating Virtual Environments The module used to create and manage virtual environments is called :mod:`venv`. :mod:`venv` will install the Python version from which the command was run (as reported by the :option:`--version` option). -For instance, excuting the command with ``python3.12`` will install +For instance, executing the command with ``python3.12`` will install version 3.12. To create a virtual environment, decide upon a directory where you want to |