From: Salim B Date: Tue, 3 Aug 2021 14:22:28 +0000 (+0000) Subject: Fix `lang.FormatPercent` description X-Git-Tag: v0.88.0~31 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d6c8cd771834ae2913658c652e30a9feadc2a7b7;p=brevno-suite%2Fhugo Fix `lang.FormatPercent` description Successor PR for https://github.com/gohugoio/hugoDocs/pull/1504 --- diff --git a/tpl/lang/lang.go b/tpl/lang/lang.go index 49f4dc1e..0e170e04 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 {