Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/puppet/functions/tree_each.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# `tree_each($data) |$value| { <PUPPET CODE BLOCK> }`
#
# The parameter `$path` is always given as an `Array` containing the path that when applied to
# the tree as `$data.dig(*$path) yields the `$value`.
# the tree as `$data.dig(*$path)` yields the `$value`.
# The `$value` is the value at that path.
#
# For `Array` values, the path will contain `Integer` entries with the array index,
Expand Down
2 changes: 1 addition & 1 deletion references/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -5060,7 +5060,7 @@ or
`tree_each($data) |$value| { <PUPPET CODE BLOCK> }`

The parameter `$path` is always given as an `Array` containing the path that when applied to
the tree as `$data.dig(*$path) yields the `$value`.
the tree as `$data.dig(*$path)` yields the `$value`.
The `$value` is the value at that path.

For `Array` values, the path will contain `Integer` entries with the array index,
Expand Down