diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-07-10 19:06:36 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-07-10 19:06:36 +0200 |
commit | 659f5acfd161d91dc8a9d0101535dcee585455ad (patch) | |
tree | 329c128c6a2e12b3b1ee81528f1c734092be8073 | |
parent | b9b95bf29c945767a01d6cb5b74ec0d09d8b7606 (diff) |
update docs
-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[]; |