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 'nb_SJ/nb_SJ.go')
-rw-r--r--nb_SJ/nb_SJ.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/nb_SJ/nb_SJ.go b/nb_SJ/nb_SJ.go
index c7187d88..870a2ba4 100644
--- a/nb_SJ/nb_SJ.go
+++ b/nb_SJ/nb_SJ.go
@@ -158,9 +158,9 @@ func (nb *nb_SJ) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- for j := len(nb.percent) - 1; j >= 0; j-- {
- b = append(b, nb.percent[j])
- }
+ b = append(b, " "...)
+
+ b = append(b, nb.percent...)
return b
}