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