diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-27 22:08:37 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-27 22:08:37 +0100 |
| commit | 3185a44bb531023a1329402ee5f9c0b66133ab32 (patch) | |
| tree | 650d93889aa25e23288455332fc10680236bd350 /crates/cli/src/inflection.rs | |
| parent | 3febb9da3e91dc11cd46f282d0edff2ea5890731 (diff) | |
| download | mihi-3185a44bb531023a1329402ee5f9c0b66133ab32.tar.gz mihi-3185a44bb531023a1329402ee5f9c0b66133ab32.zip | |
run: add enunciate completion for verbs and pronouns
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'crates/cli/src/inflection.rs')
| -rw-r--r-- | crates/cli/src/inflection.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/crates/cli/src/inflection.rs b/crates/cli/src/inflection.rs index 202d4e3..b08942f 100644 --- a/crates/cli/src/inflection.rs +++ b/crates/cli/src/inflection.rs @@ -101,9 +101,9 @@ pub fn print_full_inflection_for(word: Word) -> Result<(), String> { match word.category { Category::Noun => print_noun_inflection(&word)?, Category::Adjective => print_adjective_inflection(&word)?, - Category::Verb => {} // TODO - Category::Pronoun => {} // TODO - Category::Adverb + Category::Verb + | Category::Pronoun + | Category::Adverb | Category::Preposition | Category::Conjunction | Category::Interjection @@ -112,7 +112,6 @@ pub fn print_full_inflection_for(word: Word) -> Result<(), String> { // Nothing to do. } } - // TODO: on the 'extra' info. Ok(()) } |
