From 3fe7bee3cb87708f08c322a4f71db89012ee680a Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 22 Jan 2026 21:48:04 +0100 Subject: words: add the -īs form for the accusative plural MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For masculine/feminine 3rd declension words, it's usually taught that the accusative plural is done with -ēs. This is usually right, but in classical times i-stem 3rd declension words usually went for -īs for masculine/feminine in the accusative plural. Thus, consider it as well when inflecting these kinds of words by default. Signed-off-by: Miquel Sabaté Solà --- crates/cli/src/inflection.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'crates/cli') diff --git a/crates/cli/src/inflection.rs b/crates/cli/src/inflection.rs index 5aaf61b..202d4e3 100644 --- a/crates/cli/src/inflection.rs +++ b/crates/cli/src/inflection.rs @@ -217,7 +217,11 @@ mod tests { ); assert_noun_table( "ovis, ovis", - "ovis, ovēs | ovis, ovēs | ovem, ovēs | ovis, ovium | ovī, ovibus | ove, ovibus", + "ovis, ovēs | ovis, ovēs | ovem, ovēs/ovīs | ovis, ovium | ovī, ovibus | ove, ovibus", + ); + assert_noun_table( + "turris, turris", + "turris, turrēs | turris, turrēs | turrem/turrim, turrēs/turrīs | turris, turrium | turrī, turribus | turre/turrī, turribus", ); assert_noun_table( "mare, maris", -- cgit v1.2.3