summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 07:10:12 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 07:10:12 (GMT)
commit815b0e23bf665412340e5383c2da95b8efb528d7 (patch)
tree87b2cba226e34f48b30be894652939525b672d01 /Doc
parent4a2ab120f327f20ef320586831f50e4896dd44ef (diff)
downloadcpython-815b0e23bf665412340e5383c2da95b8efb528d7.zip
cpython-815b0e23bf665412340e5383c2da95b8efb528d7.tar.gz
cpython-815b0e23bf665412340e5383c2da95b8efb528d7.tar.bz2
Fix typo.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/argparse.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst
index a134036..d6fe4b4 100644
--- a/Doc/howto/argparse.rst
+++ b/Doc/howto/argparse.rst
@@ -11,7 +11,7 @@ recommended command-line parsing module in the Python standard library.
.. note::
- There's two other modules that fulfill the same task, namely
+ There are two other modules that fulfill the same task, namely
:mod:`getopt` (an equivalent for :c:func:`getopt` from the C
language) and the deprecated :mod:`optparse`.
Note also that :mod:`argparse` is based on :mod:`optparse`,