summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-02-28 20:09:36 (GMT)
committerGeorg Brandl <georg@python.org>2016-02-28 20:09:36 (GMT)
commit97b6e0bd1b1305f3273b1de9d03f238dea161951 (patch)
tree775d8a4504cbfbcb9c3da2147b17b12cd967b1a1
parent5a3e8e5bc080fd37299dc0276d8efd5738b9e9ce (diff)
downloadcpython-97b6e0bd1b1305f3273b1de9d03f238dea161951.zip
cpython-97b6e0bd1b1305f3273b1de9d03f238dea161951.tar.gz
cpython-97b6e0bd1b1305f3273b1de9d03f238dea161951.tar.bz2
Fix typo.
-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 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.