diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-08-19 16:09:59 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-08-19 16:10:15 -0400 |
commit | 422f90a279b3b7af0f5621e176c197680963a8d8 (patch) | |
tree | 2c4da3781aaa259fa0127b2d277ace460145876f /cmd2/argparse_custom.py | |
parent | 301fd2c10533c76cbb050524f107607d13e001b8 (diff) | |
download | cmd2-git-422f90a279b3b7af0f5621e176c197680963a8d8.tar.gz |
Fixed comment
Diffstat (limited to 'cmd2/argparse_custom.py')
-rw-r--r-- | cmd2/argparse_custom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_custom.py b/cmd2/argparse_custom.py index 334b93d9..5d022721 100644 --- a/cmd2/argparse_custom.py +++ b/cmd2/argparse_custom.py @@ -138,7 +138,7 @@ CompletionItem Class: To use CompletionItems, just return them from your choices or completer functions. To avoid printing a ton of information to the screen at once when a user presses tab, there is - a maximum threshold for the number of CompletionItems that will be shown. It's value is defined + a maximum threshold for the number of CompletionItems that will be shown. Its value is defined in cmd2.Cmd.max_completion_items. It defaults to 50, but can be changed. 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. |