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_SE/sv_SE.go')
-rw-r--r--sv_SE/sv_SE.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/sv_SE/sv_SE.go b/sv_SE/sv_SE.go
index f61e7c11..07712452 100644
--- a/sv_SE/sv_SE.go
+++ b/sv_SE/sv_SE.go
@@ -168,9 +168,9 @@ func (sv *sv_SE) 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
}