hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit d6c8cd771834ae2913658c652e30a9feadc2a7b7
parent dfe54d32169ff6dae18023a4dada6009d48f8636
Author: Salim B <github@salim.space>
Date:   Tue,  3 Aug 2021 14:22:28 +0000

Fix `lang.FormatPercent` description

Successor PR for https://github.com/gohugoio/hugoDocs/pull/1504
Diffstat:
Mtpl/lang/lang.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tpl/lang/lang.go b/tpl/lang/lang.go
@@ -71,7 +71,7 @@ func (ns *Namespace) FormatNumber(precision, number interface{}) (string, error)
 }
 
 // FormatPercent formats number with the given precision for the current language.
-// Note that the number is assumbed to be percent.
+// Note that the number is assumed to be a percentage.
 func (ns *Namespace) FormatPercent(precision, number interface{}) (string, error) {
 	p, n, err := ns.castPrecisionNumber(precision, number)
 	if err != nil {