-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(librime): spelling correction (rime/librime#228)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule librime
updated
16 files
+49 −8 | src/rime/algo/syllabifier.cc | |
+12 −2 | src/rime/algo/syllabifier.h | |
+2 −0 | src/rime/common.h | |
+313 −0 | src/rime/dict/corrector.cc | |
+131 −0 | src/rime/dict/corrector.h | |
+29 −7 | src/rime/dict/dict_compiler.cc | |
+2 −0 | src/rime/dict/dict_compiler.h | |
+3 −0 | src/rime/dict/dict_module.cc | |
+10 −11 | src/rime/dict/dictionary.cc | |
+5 −4 | src/rime/dict/dictionary.h | |
+1 −2 | src/rime/dict/prism.cc | |
+4 −3 | src/rime/dict/prism.h | |
+10 −11 | src/rime/gear/gears_module.cc | |
+136 −48 | src/rime/gear/script_translator.cc | |
+5 −0 | src/rime/gear/script_translator.h | |
+151 −0 | test/corrector_test.cc |