diff options
author | Georg Brandl <georg@python.org> | 2016-02-28 20:09:36 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-02-28 20:09:36 (GMT) |
commit | 97b6e0bd1b1305f3273b1de9d03f238dea161951 (patch) | |
tree | 775d8a4504cbfbcb9c3da2147b17b12cd967b1a1 | |
parent | 5a3e8e5bc080fd37299dc0276d8efd5738b9e9ce (diff) | |
download | cpython-97b6e0bd1b1305f3273b1de9d03f238dea161951.zip cpython-97b6e0bd1b1305f3273b1de9d03f238dea161951.tar.gz cpython-97b6e0bd1b1305f3273b1de9d03f238dea161951.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 f113c98..02bfc70 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -513,7 +513,7 @@ to count the number of occurrences of a specific optional arguments: * Sadly, our help output isn't very informative on the new ability our script has acquired, but that can always be fixed by improving the documentation for - out script (e.g. via the ``help`` keyword argument). + our script (e.g. via the ``help`` keyword argument). * That last output exposes a bug in our program. |