diff options
-rw-r--r-- | readme.md | 2 | ||||
-rw-r--r-- | test/deinflection/cases.ts | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -23,7 +23,7 @@ scope is larger than Yomichan, it's still focused on Japanese only.** - [ ] JMNedict - [ ] add separate kanji readings/info table - [ ] add separate frequency dictionary -- [ ] add more deinflections to db/deinflections.sql +- [x] add more deinflections to db/deinflections.sql - [x] set up unit tests for sentence reading generation - [x] port server-internal API to simple HTTP JSON API - [ ] create primitive search page ui diff --git a/test/deinflection/cases.ts b/test/deinflection/cases.ts index 3f03f6d..e7a987e 100644 --- a/test/deinflection/cases.ts +++ b/test/deinflection/cases.ts @@ -78,7 +78,6 @@ export default [ { input: "見極めなければならない", mustHave: [ Inflection.Obligatory, Inflection.Affirmative ], mustNotHave: [ Inflection.Conditional.Ba, Inflection.Negative ] } // TODO: りゃ for いることは // TODO: じゃ for では - // TODO: なきゃ + なくちゃ // and more! ] satisfies Test[] as Test[]; |