Make golint happy. Fixes #21

This commit is contained in:
Leonel Quinteros
2018-05-29 12:46:11 -03:00
parent 7c73cc2975
commit 3c52f5c10b
4 changed files with 16 additions and 12 deletions

3
po.go
View File

@@ -366,9 +366,8 @@ func (po *Po) pluralForm(n int) int {
/* Use the Germanic plural rule. */
if n == 1 {
return 0
} else {
return 1
}
return 1
}
return po.pluralforms.Eval(uint32(n))
}