We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02702d commit 550a386Copy full SHA for 550a386
internal/inflection/singular.go
@@ -39,5 +39,9 @@ func Singular(s SingularParams) string {
39
if strings.ToLower(s.Name) == "calories" {
40
return "calorie"
41
}
42
+ // Manual fix for incorrect handling of "-ves" suffix
43
+ if strings.ToLower(s.Name) == "waves" {
44
+ return "wave"
45
+ }
46
return upstream.Singular(s.Name)
47
0 commit comments