summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/is_hash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/is_hash.rb')
-rw-r--r--lib/puppet/parser/functions/is_hash.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/puppet/parser/functions/is_hash.rb b/lib/puppet/parser/functions/is_hash.rb
index ad907f0..3162f7d 100644
--- a/lib/puppet/parser/functions/is_hash.rb
+++ b/lib/puppet/parser/functions/is_hash.rb
@@ -8,8 +8,7 @@ Returns true if the variable passed to this function is a hash.
EOS
) do |arguments|
- raise(Puppet::ParseError, "is_hash(): Wrong number of arguments " +
- "given (#{arguments.size} for 1)") if arguments.size != 1
+ raise(Puppet::ParseError, "is_hash(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.size != 1
type = arguments[0]