diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-11 15:16:38 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-11 15:16:38 -0400 |
commit | c1312cadba42f273179a6bc08ec5a8d22ca23891 (patch) | |
tree | 42a8d0ee8cf37f605c5db5e020794a88a8f67e1d /cmd2/cmd2.py | |
parent | eb5b4fff8b1042d6a5b30a768bf35496acc4c593 (diff) | |
download | cmd2-git-c1312cadba42f273179a6bc08ec5a8d22ca23891.tar.gz |
Updated documentation
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 14107f5b..ee40d79d 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -467,9 +467,9 @@ class Cmd(cmd.Cmd): # Otherwise it can be set to any custom key to meet your needs. self.matches_sort_key = ALPHABETICAL_SORT_KEY - # The maximum number of CompletionItems to display during tab completion. If the number of possible - # completions exceeds this number, suggestions will be displayed in the typical columnized format and - # will not include the description value of the CompletionItems. + # The maximum number of CompletionItems to display during tab completion. If the number of completion + # suggestions exceeds this number, they will be displayed in the typical columnized format and will + # not include the description value of the CompletionItems. self.max_completion_items = 50 ############################################################################################################ |