summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-07-14 19:45:18 (GMT)
committerNed Deily <nad@acm.org>2013-07-14 19:45:18 (GMT)
commitd57b268653b0def1348965e09baea9b8468b947c (patch)
tree54d1e11cacb204c55a1da2d607f37fa322518482 /Doc/howto
parent20f5e37457080f6eab75ec01d8c60df2c8d65532 (diff)
parent0995c47891b6a0bea83c201329082c7ebd62f825 (diff)
downloadcpython-d57b268653b0def1348965e09baea9b8468b947c.zip
cpython-d57b268653b0def1348965e09baea9b8468b947c.tar.gz
cpython-d57b268653b0def1348965e09baea9b8468b947c.tar.bz2
Closes #18452: fix several "occurrence" typos (reported by FĂ©vry Thibault).
Diffstat (limited to 'Doc/howto')
-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