summaryrefslogtreecommitdiff
path: root/src/click/parser.py
diff options
context:
space:
mode:
authorDeepyaman Datta <deepyaman.datta@utexas.edu>2021-06-06 14:26:43 -0400
committerGitHub <noreply@github.com>2021-06-06 14:26:43 -0400
commit8b48450d5d63c747600e069d4c3e2274f41c8360 (patch)
treed9352ce1b4d470a96c5b2c5b594ddc84b1a344b8 /src/click/parser.py
parentd09ef712972df060080a43cade589405f777369d (diff)
downloadclick-8b48450d5d63c747600e069d4c3e2274f41c8360.tar.gz
Fix typo in docstring (change "appnd" to "append") (#1950)
Diffstat (limited to 'src/click/parser.py')
-rw-r--r--src/click/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/click/parser.py b/src/click/parser.py
index 7d995f7..2d5a2ed 100644
--- a/src/click/parser.py
+++ b/src/click/parser.py
@@ -300,7 +300,7 @@ class OptionParser:
"""Adds a new option named `dest` to the parser. The destination
is not inferred (unlike with optparse) and needs to be explicitly
provided. Action can be any of ``store``, ``store_const``,
- ``append``, ``appnd_const`` or ``count``.
+ ``append``, ``append_const`` or ``count``.
The `obj` can be used to identify the option in the order list
that is returned from the parser.