diff options
author | Georg Brandl <georg@python.org> | 2016-02-28 21:09:36 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-02-28 21:09:36 +0100 |
commit | 76b2ee03c3240e7937f4551e2bc064684ea7d325 (patch) | |
tree | 62285a67e3101fd1a87f547aa958e094a3cb9941 /Doc | |
parent | 3263f6874a96c7b2862bd91460a28e66ac039dbe (diff) | |
download | cpython-git-76b2ee03c3240e7937f4551e2bc064684ea7d325.tar.gz |
Fix typo.
Diffstat (limited to 'Doc')
-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 510d1d49db..cfe9868875 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -511,7 +511,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. |