Skip to content

Commit

Permalink
English: use Homonculi as the plural for Homonculous
Browse files Browse the repository at this point in the history
Backported from 3.0.
  • Loading branch information
backwardsEric committed Nov 29, 2023
1 parent ff925c1 commit 2ecda27
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cmd4.c
Original file line number Diff line number Diff line change
Expand Up @@ -6861,6 +6861,10 @@ void plural_aux(char *Name)
{
strcpy(&(Name[NameLen - 4]), "ice");
}
else if (suffix(Name, "ous"))
{
strcpy(&(Name[NameLen - 3]), "i");
}
else if (suffix(Name, "us"))
{
strcpy(&(Name[NameLen - 2]), "i");
Expand Down

0 comments on commit 2ecda27

Please sign in to comment.