diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 07:10:12 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 07:10:12 (GMT) |
commit | 815b0e23bf665412340e5383c2da95b8efb528d7 (patch) | |
tree | 87b2cba226e34f48b30be894652939525b672d01 /Doc/howto | |
parent | 4a2ab120f327f20ef320586831f50e4896dd44ef (diff) | |
download | cpython-815b0e23bf665412340e5383c2da95b8efb528d7.zip cpython-815b0e23bf665412340e5383c2da95b8efb528d7.tar.gz cpython-815b0e23bf665412340e5383c2da95b8efb528d7.tar.bz2 |
Fix typo.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/argparse.rst | 2 |
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`, |