diff --git a/content/docs/reference/templates/functions.md b/content/docs/reference/templates/functions.md index 96b8c8e..32b19cc 100644 --- a/content/docs/reference/templates/functions.md +++ b/content/docs/reference/templates/functions.md @@ -2224,18 +2224,17 @@ Places commas to separate groups of thousands in a number. #### in ```yag -{{ $result := in }} +{{ $result := in }} ``` -Returns whether the case-sensitive `value` is in the provided list. List can be a slice or string. +Returns whether the case-sensitive `value` is in the `sequence`. `sequence` can be a slice or string. #### inFold ```yag -{{ $result := inFold }} +{{ $result := inFold }} ``` - -Same as [in](#in), but is case-insensitive. List can be a slice or string. +Same as [in](#in), but is case-insensitive. `sequence` can be a slice or string. #### index