diff --git a/content/docs/reference/templates/functions.md b/content/docs/reference/templates/functions.md index 7692c2e..f8d118c 100644 --- a/content/docs/reference/templates/functions.md +++ b/content/docs/reference/templates/functions.md @@ -2221,21 +2221,21 @@ Places commas to separate groups of thousands in a number. - `number`: the number to format. Must be an int or a string. Must be a whole number. -#### inFold +#### in ```yag -{{ $result := inFold }} +{{ $result := in }} ``` -Same as [in](#in), but is case-insensitive. +Returns whether the case-sensitive `value` is in the `sequence`. `sequence` can be a slice or string. -#### in +#### inFold ```yag -{{ $result := in }} +{{ $result := inFold }} ``` -Returns whether the case-sensitive `value` is in the provided list. +Same as [in](#in), but is case-insensitive. `sequence` can be a slice or string. #### index