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 'gsw/gsw.go')
-rw-r--r--gsw/gsw.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/gsw/gsw.go b/gsw/gsw.go
index 7ce5fa62..7cad0b88 100644
--- a/gsw/gsw.go
+++ b/gsw/gsw.go
@@ -152,7 +152,9 @@ func (gsw *gsw) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- b = append(b, gsw.Percent[0])
+ b = append(b, " "...)
+
+ b = append(b, gsw.percent...)
return b
}