Prechádzať zdrojové kódy

Remove superfluous parenthesis

jvoisin 1 rok pred
rodič
commit
8c5f88ac62
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      internal/locale/plural.go

+ 1 - 1
internal/locale/plural.go

@@ -5,7 +5,7 @@ package locale // import "miniflux.app/v2/internal/locale"
 
 
 // See https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
 // See https://localization-guide.readthedocs.io/en/latest/l10n/pluralforms.html
 // And http://www.unicode.org/cldr/charts/29/supplemental/language_plural_rules.html
 // And http://www.unicode.org/cldr/charts/29/supplemental/language_plural_rules.html
-var pluralForms = map[string](func(n int) int){
+var pluralForms = map[string]func(n int) int{
 	// nplurals=2; plural=(n != 1);
 	// nplurals=2; plural=(n != 1);
 	"default": func(n int) int {
 	"default": func(n int) int {
 		if n != 1 {
 		if n != 1 {