Skip to content

Commit

Permalink
Merge pull request #395 from snuyanzin/CORRECT_MSG
Browse files Browse the repository at this point in the history
Remove duplicate 'to see' from warning message
  • Loading branch information
gnodet committed Jun 3, 2019
2 parents db70837 + 8d1c903 commit 9ef1cc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4683,7 +4683,7 @@ protected boolean doList(List<Candidate> possible, String completed, boolean run
if (listMax > 0 && possible.size() >= listMax
|| lines >= size.getRows() - promptLines) {
// prompt
post = () -> new AttributedString(getAppName() + ": do you wish to see to see all " + possible.size()
post = () -> new AttributedString(getAppName() + ": do you wish to see all " + possible.size()
+ " possibilities (" + lines + " lines)?");
redisplay(true);
int c = readCharacter();
Expand Down

0 comments on commit 9ef1cc2

Please sign in to comment.