Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sv_FI/sv_FI.go')
-rw-r--r--sv_FI/sv_FI.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/sv_FI/sv_FI.go b/sv_FI/sv_FI.go
index 46a80607..0a9384d2 100644
--- a/sv_FI/sv_FI.go
+++ b/sv_FI/sv_FI.go
@@ -168,9 +168,9 @@ func (sv *sv_FI) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- for j := len(sv.percent) - 1; j >= 0; j-- {
- b = append(b, sv.percent[j])
- }
+ b = append(b, " "...)
+
+ b = append(b, sv.percent...)
return b
}