diff options
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index faa96924..ea3d32d2 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -2007,7 +2007,7 @@ class Cmd(cmd.Cmd): orig_completer = None def disable_completion(): - """Turn off completion during the select input line""" + """Turn off completion while entering input""" nonlocal orig_completer nonlocal completion_disabled @@ -2017,7 +2017,7 @@ class Cmd(cmd.Cmd): completion_disabled = True def enable_completion(): - """Restore tab completion when select is done reading input""" + """Restore tab completion when finished entering input""" nonlocal completion_disabled if self._completion_supported() and completion_disabled: |