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
path: root/cu/cu.go
diff options
context:
space:
mode:
Diffstat (limited to 'cu/cu.go')
-rw-r--r--cu/cu.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cu/cu.go b/cu/cu.go
index 94d1e236..75294704 100644
--- a/cu/cu.go
+++ b/cu/cu.go
@@ -141,7 +141,9 @@ func (cu *cu) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- b = append(b, cu.Percent[0])
+ b = append(b, " "...)
+
+ b = append(b, cu.percent...)
return b
}