summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authoralnoki <43892045+alnoki@users.noreply.github.com>2023-02-05 09:45:07 (GMT)
committerGitHub <noreply@github.com>2023-02-05 09:45:07 (GMT)
commit6e4a521c2ab84c082ad71e540b045699f0dbbc11 (patch)
tree5b944d0cdf00855f3d1d889ed241492f162c7d25 /Doc
parentddd619cffa457776a22f224b7111bd39de289d66 (diff)
downloadcpython-6e4a521c2ab84c082ad71e540b045699f0dbbc11.zip
cpython-6e4a521c2ab84c082ad71e540b045699f0dbbc11.tar.gz
cpython-6e4a521c2ab84c082ad71e540b045699f0dbbc11.tar.bz2
Add missing preposition in argparse docs (#101548)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/argparse.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index 475cac7..dbaa5d0 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -31,7 +31,7 @@ Core Functionality
The :mod:`argparse` module's support for command-line interfaces is built
around an instance of :class:`argparse.ArgumentParser`. It is a container for
-argument specifications and has options that apply the parser as whole::
+argument specifications and has options that apply to the parser as whole::
parser = argparse.ArgumentParser(
prog = 'ProgramName',