diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-17 22:18:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 22:18:19 (GMT) |
commit | 129e47733b3a59f0c4a7f5879802777b7983978d (patch) | |
tree | e4133a959c62093f5ab759b2dc1178e777f2296f /Doc/library | |
parent | 6c50f23ae085ec66f320a26a3f0a6c60d7f2b29d (diff) | |
download | cpython-129e47733b3a59f0c4a7f5879802777b7983978d.zip cpython-129e47733b3a59f0c4a7f5879802777b7983978d.tar.gz cpython-129e47733b3a59f0c4a7f5879802777b7983978d.tar.bz2 |
[doc] Add a missing apostrophe in a code example in venv.rst (GH-28391) (GH-28426)
(cherry picked from commit d22a700091af35ce52db0b1fbb02115bb6efbb1f)
Co-authored-by: Arkaprabha Chakraborty <chakrabortyarkaprabha998@gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/venv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index e020570..1ad75d5 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -421,7 +421,7 @@ subclass which installs setuptools and pip into a created virtual environment:: 'more target ' 'directories.') parser.add_argument('dirs', metavar='ENV_DIR', nargs='+', - help='A directory in which to create the + help='A directory in which to create the ' 'virtual environment.') parser.add_argument('--no-setuptools', default=False, action='store_true', dest='nodist', |