Fix request message

This commit is contained in:
Dustin Pianalto
2021-02-22 22:18:59 -09:00
parent eb5b128cde
commit db403d5f01
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -17,5 +17,8 @@ func PluralizeString(s string, i int) string {
if i == 1 {
return s
}
if s == "is" {
return "are"
}
return s + "s"
}