OLD | NEW |
1 # Ngram suggestions | 1 # Ngram suggestions |
2 # - fix case problem | 2 # - fix case problem |
3 # - detect character swapping (keep only these suggestions) | 3 # - detect character swapping (keep only these suggestions) |
4 # - lesser suggestions | 4 # - lesser suggestions |
5 # - weight with common subsequence algorithm | 5 # - weight with common subsequence algorithm |
6 # - suggest uppercased words | 6 # - suggest uppercased words |
7 | 7 |
8 # 2007-02-05: | 8 # 2007-02-05: |
9 # now not neighbour character replacements and character movings are | 9 # now not neighbour character replacements and character movings are |
10 # detected by not ngram suggestions, too. | 10 # detected by not ngram suggestions, too. |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 REP ear ier | 194 REP ear ier |
195 REP ear air | 195 REP ear air |
196 REP air ear | 196 REP air ear |
197 REP w qu | 197 REP w qu |
198 REP qu w | 198 REP qu w |
199 REP z ss | 199 REP z ss |
200 REP ss z | 200 REP ss z |
201 REP shun tion | 201 REP shun tion |
202 REP shun sion | 202 REP shun sion |
203 REP shun cion | 203 REP shun cion |
OLD | NEW |