diff --git a/models/noun.go b/models/noun.go index a34c3c6..c799c99 100644 --- a/models/noun.go +++ b/models/noun.go @@ -1,6 +1,7 @@ package models import ( + "fmt" "strings" ) @@ -19,6 +20,11 @@ type Noun struct { } func (n Noun) Plural() string { + if !n.Regular { + fmt.Println("[noun] Irregular nouns not implemented") + return n.Word + } + suffixes := []string{ "s", "x",