Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb committed Apr 7, 2016
1 parent 5891894 commit a0b56c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public String getCurrentWord() {
}

public boolean continuesSuggestion(char newChar) {
return !getSuggestedWord().startsWith(currentWord + newChar);
return getSuggestedWord().startsWith(currentWord + newChar);
}

public void updateState(char newChar) {
Expand Down

0 comments on commit a0b56c1

Please sign in to comment.