From 3185a44bb531023a1329402ee5f9c0b66133ab32 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 27 Jan 2026 22:08:37 +0100 Subject: run: add enunciate completion for verbs and pronouns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- crates/cli/src/inflection.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'crates/cli/src/inflection.rs') 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(()) } -- cgit v1.2.3