Skip to content

Commit

Permalink
docs(fix): Fix example output for coll.Merge (#2252)
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Henderson <[email protected]>
  • Loading branch information
hairyhenderson authored Nov 9, 2024
1 parent bcb33a2 commit 60a575f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs-src/content/functions/coll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ funcs:
{{ $src1 := dict "foo" 8 "baz" 4 }}
{{ $src2 := dict "foo" 3 "bar" 5 }}
{{ coll.Merge $dst $src1 $src2 }}'
map[foo:1 bar:5 baz:4]
map[foo:1 bar:2 baz:4]
- name: coll.Pick
released: v3.7.0
description: |
Expand Down
2 changes: 1 addition & 1 deletion docs/content/functions/coll.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ $ gomplate -i '{{ $dst := dict "foo" 1 "bar" 2 }}
{{ $src1 := dict "foo" 8 "baz" 4 }}
{{ $src2 := dict "foo" 3 "bar" 5 }}
{{ coll.Merge $dst $src1 $src2 }}'
map[foo:1 bar:5 baz:4]
map[foo:1 bar:2 baz:4]
```

## `coll.Pick`
Expand Down

0 comments on commit 60a575f

Please sign in to comment.