Skip to content

Commit

Permalink
Update coll.md
Browse files Browse the repository at this point in the history
It should be written wrong here, the priority order is from left to right, the value of bar should be 2
  • Loading branch information
live851738909 authored Aug 30, 2024
1 parent 71f53aa commit 9ec2029
Showing 1 changed file with 1 addition and 1 deletion.
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 9ec2029

Please sign in to comment.