Skip to content

Commit c6f5999

Browse files
committed
Fixed comment
1 parent 2f4198e commit c6f5999

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ def flag_based_complete(self, text, line, begidx, endidx, flag_dict, all_else=No
15021502
if flag in flag_dict:
15031503
match_against = flag_dict[flag]
15041504

1505-
# Perform tab completion using an Collection. These matches are already sorted.
1505+
# Perform tab completion using a Collection. These matches are already sorted.
15061506
if isinstance(match_against, Collection):
15071507
completions_matches = self.basic_complete(text, line, begidx, endidx, match_against)
15081508

@@ -1546,7 +1546,7 @@ def index_based_complete(self, text, line, begidx, endidx, index_dict, all_else=
15461546
else:
15471547
match_against = all_else
15481548

1549-
# Perform tab completion using an Collection. These matches are already sorted.
1549+
# Perform tab completion using a Collection. These matches are already sorted.
15501550
if isinstance(match_against, Collection):
15511551
matches = self.basic_complete(text, line, begidx, endidx, match_against)
15521552

0 commit comments

Comments
 (0)