Skip to content

Commit

Permalink
Remove duplicate 'to see' from warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed May 30, 2019
1 parent db70837 commit 8d1c903
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 8d1c903

Please sign in to comment.