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