We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75a6186 commit 594c2ddCopy full SHA for 594c2dd
1 file changed
lib/puppet/parser/functions/concat.rb
@@ -16,9 +16,9 @@ module Puppet::Parser::Functions
16
EOS
17
) do |arguments|
18
19
- # Check that 2 arguments have been given ...
+ # Check that more than 2 arguments have been given ...
20
raise(Puppet::ParseError, "concat(): Wrong number of arguments " +
21
- "given (#{arguments.size} for 2)") if arguments.size != 2
+ "given (#{arguments.size} for < 2)") if arguments.size < 2
22
23
a = arguments[0]
24
b = arguments[1]
0 commit comments