Преглед изворни кода

Remove superfluous parenthesis

jvoisin пре 1 година
родитељ
комит
8c5f88ac62
1 измењених фајлова са 1 додато и 1 уклоњено
  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
 // 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);
 	"default": func(n int) int {
 		if n != 1 {