nolint:unparam
(word string, number int)
| 106 | |
| 107 | //nolint:unparam |
| 108 | func pluralize(word string, number int) string { |
| 109 | if number == 1 { |
| 110 | return word |
| 111 | } |
| 112 | return word + "s" |
| 113 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…