From 8945be9c6474de917b4dd419d76df48f81936baf Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Thu, 14 Dec 2023 08:37:32 -0800 Subject: [PATCH] Update description of the humanize ordinal conversion --- content/en/functions/inflect/Humanize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/inflect/Humanize.md b/content/en/functions/inflect/Humanize.md index 41d61a4e5..71b4a5fd2 100644 --- a/content/en/functions/inflect/Humanize.md +++ b/content/en/functions/inflect/Humanize.md @@ -18,7 +18,7 @@ aliases: [/functions/humanize] {{ humanize "myCamelPost" }} → My camel post ``` -If the input is either an int64 value or the string representation of an integer, humanize returns the number with the proper ordinal appended. +If the input is an integer or a string representation of an integer, humanize returns the number with the proper ordinal appended. ```go-html-template {{ humanize "52" }} → 52nd