aboutsummaryrefslogtreecommitdiff
path: root/crates/cli/src/inflection.rs
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-01-27 22:08:37 +0100
committerMiquel Sabaté Solà <mssola@mssola.com>2026-01-27 22:08:37 +0100
commit3185a44bb531023a1329402ee5f9c0b66133ab32 (patch)
tree650d93889aa25e23288455332fc10680236bd350 /crates/cli/src/inflection.rs
parent3febb9da3e91dc11cd46f282d0edff2ea5890731 (diff)
downloadmihi-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.rs7
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(())
}