From d6c8cd771834ae2913658c652e30a9feadc2a7b7 Mon Sep 17 00:00:00 2001 From: Salim B Date: Tue, 3 Aug 2021 14:22:28 +0000 Subject: [PATCH] Fix `lang.FormatPercent` description Successor PR for https://github.com/gohugoio/hugoDocs/pull/1504 --- tpl/lang/lang.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tpl/lang/lang.go b/tpl/lang/lang.go index 49f4dc1ec..0e170e041 100644 --- 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 {