Skip to content

Commit

Permalink
GermanSpellerRule.java: improve suggestion for 'aus Versehen'
Browse files Browse the repository at this point in the history
  • Loading branch information
janschreiber committed Jul 13, 2017
1 parent 0eb8a8c commit 5bb22e3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ protected List<String> getAdditionalTopSuggestions(List<String> suggestions, Str
return Collections.singletonList("Wi-Fi");
} else if ("desweiteren".equals(w)) {
return Collections.singletonList("des Weiteren");
} else if ("ausversehen".equals(w)) {
return Collections.singletonList("aus Versehen");
} else if ("wieviel".equals(w)) {
return Collections.singletonList("wie viel");
} else if ("wieviele".equals(w)) {
Expand Down

0 comments on commit 5bb22e3

Please sign in to comment.