summaryrefslogtreecommitdiff
path: root/docs-src/content/functions
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2025-03-09 20:14:46 -0400
committerGitHub <noreply@github.com>2025-03-10 00:14:46 +0000
commitbfa6b9dcef7592e6dd8225aaa0d0ab5aef5b3f84 (patch)
tree7e844defee92dc3af320df20baa6f9b421d4a4c9 /docs-src/content/functions
parent7942441e61471f578a57910b3aa93636f5a0310d (diff)
chore(refactoring): Refactor/modernizations (#2345)
chore(refactoring): Refactor with modernization refactorings * range over int * replace interface{} with any * replace common map operations with maps.Copy/maps.Clone * simplifying loops with slices.Contains/ContainsFunc * modernize benchmarks with b.Loop * modernize tests with t.Context * use fmt.Appendf * range over strings.SplitSeq * use new stdlib crypto/pbkdf2 package --------- Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs-src/content/functions')
-rw-r--r--docs-src/content/functions/coll.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-src/content/functions/coll.yml b/docs-src/content/functions/coll.yml
index a540598d..2b96ad95 100644
--- a/docs-src/content/functions/coll.yml
+++ b/docs-src/content/functions/coll.yml
@@ -4,7 +4,7 @@ preamble: |
These functions help manipulate and query collections of data, like lists (slices, or arrays) and maps (dictionaries).
#### Implementation Note
- For the functions that return an array, a Go `[]interface{}` is returned, regardless of whether or not the
+ For the functions that return an array, a Go `[]any` is returned, regardless of whether or not the
input was a different type.
funcs:
- name: coll.Dict