summaryrefslogtreecommitdiffstats
path: root/Doc/howto/argparse.rst
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-07-14 19:43:16 (GMT)
committerNed Deily <nad@acm.org>2013-07-14 19:43:16 (GMT)
commit0995c47891b6a0bea83c201329082c7ebd62f825 (patch)
treed1fd152e3070772bf234978488ddb919987cf922 /Doc/howto/argparse.rst
parent889b92d3aa88b1d38d1f96907e0c02bea6d81777 (diff)
downloadcpython-0995c47891b6a0bea83c201329082c7ebd62f825.zip
cpython-0995c47891b6a0bea83c201329082c7ebd62f825.tar.gz
cpython-0995c47891b6a0bea83c201329082c7ebd62f825.tar.bz2
Issue #18452: fix several "occurrence" typos (reported by FĂ©vry Thibault).
Diffstat (limited to 'Doc/howto/argparse.rst')
-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 ec67f1e..deaee50 100644
--- a/Doc/howto/argparse.rst
+++ b/Doc/howto/argparse.rst
@@ -468,7 +468,7 @@ verbosity argument (check the output of ``python --help``)::
print(answer)
We have introduced another action, "count",
-to count the number of occurences of a specific optional arguments:
+to count the number of occurrences of a specific optional arguments:
.. code-block:: sh