summaryrefslogtreecommitdiff
path: root/cmd2/utils.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-21 10:52:50 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-21 10:52:50 -0500
commitce87cb44df8cf2d61e6e37ab06c943983b6f23bd (patch)
treedcc6eb49cfb5702373a9f0ad4150a83940b271ad /cmd2/utils.py
parent5e96ee67c94eed926e4160147a5005879da7c30d (diff)
downloadcmd2-git-ce87cb44df8cf2d61e6e37ab06c943983b6f23bd.tar.gz
Removed hyphen from tab-completion
Diffstat (limited to 'cmd2/utils.py')
-rw-r--r--cmd2/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py
index 971a22ce..237a6d1e 100644
--- a/cmd2/utils.py
+++ b/cmd2/utils.py
@@ -129,8 +129,8 @@ class Settable:
:param choices: iterable of accepted values
:param choices_function: function that provides choices for this argument
:param choices_method: cmd2-app method that provides choices for this argument (See note below)
- :param completer_function: tab-completion function that provides choices for this argument
- :param completer_method: cmd2-app tab-completion method that provides choices
+ :param completer_function: tab completion function that provides choices for this argument
+ :param completer_method: cmd2-app tab completion method that provides choices
for this argument (See note below)
Note: