summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-30 19:58:46 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-30 19:58:46 -0400
commitc6f5999809dfcde2d85b0f16131bf09316476f5d (patch)
tree7e8abacf9f6a5a81b529d3e9154c907c1a9dd035
parent2f4198ef94262dc0c747c34541a72128164dc340 (diff)
downloadcmd2-git-c6f5999809dfcde2d85b0f16131bf09316476f5d.tar.gz
Fixed comment
-rwxr-xr-xcmd2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2.py b/cmd2.py
index c2658798..dbcbae14 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -1502,7 +1502,7 @@ class Cmd(cmd.Cmd):
if flag in flag_dict:
match_against = flag_dict[flag]
- # Perform tab completion using an Collection. These matches are already sorted.
+ # Perform tab completion using a Collection. These matches are already sorted.
if isinstance(match_against, Collection):
completions_matches = self.basic_complete(text, line, begidx, endidx, match_against)
@@ -1546,7 +1546,7 @@ class Cmd(cmd.Cmd):
else:
match_against = all_else
- # Perform tab completion using an Collection. These matches are already sorted.
+ # Perform tab completion using a Collection. These matches are already sorted.
if isinstance(match_against, Collection):
matches = self.basic_complete(text, line, begidx, endidx, match_against)