Skip to content

Commit

Permalink
(MODULES-444) Update docs with new functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Souter committed Dec 4, 2014
1 parent 368c97f commit 75a6186
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/puppet/parser/functions/concat.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

module Puppet::Parser::Functions
newfunction(:concat, :type => :rvalue, :doc => <<-EOS
Appends the contents of array 2 onto array 1.
Appends the contents of multiple arrays into array 1.
*Example:*
concat(['1','2','3'],['4','5','6'])
concat(['1','2','3'],['4','5','6'],['7','8','9'])
Would result in:
['1','2','3','4','5','6']
['1','2','3','4','5','6','7','8','9']
EOS
) do |arguments|

Expand Down

0 comments on commit 75a6186

Please sign in to comment.