diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 07:11:25 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 07:11:25 (GMT) |
commit | 974045523b838eb17e4c7a72bf43eb936a1db89c (patch) | |
tree | 5939f29533697a83267542895205a2b5bf988a96 | |
parent | a8a57f4f27422ac88f18f4ffb09518dca33ab4c1 (diff) | |
parent | 815b0e23bf665412340e5383c2da95b8efb528d7 (diff) | |
download | cpython-974045523b838eb17e4c7a72bf43eb936a1db89c.zip cpython-974045523b838eb17e4c7a72bf43eb936a1db89c.tar.gz cpython-974045523b838eb17e4c7a72bf43eb936a1db89c.tar.bz2 |
Fix typo.
-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`, |