From 8c5f88ac6215ba1947e8a78b8a8d08d4382cfc94 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Mon, 20 Jan 2025 16:14:22 +0100 Subject: [PATCH] Remove superfluous parenthesis --- internal/locale/plural.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/locale/plural.go b/internal/locale/plural.go index 8bf6913d..fd62a3d2 100644 --- a/internal/locale/plural.go +++ b/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 {