summaryrefslogtreecommitdiff
path: root/empty.rb
diff options
context:
space:
mode:
Diffstat (limited to 'empty.rb')
-rw-r--r--empty.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/empty.rb b/empty.rb
index 1db9b63..e78ebf0 100644
--- a/empty.rb
+++ b/empty.rb
@@ -2,8 +2,6 @@
# empty.rb
#
-# TODO(Krzysztof Wilczynski): Support for hashes would be nice too ...
-
module Puppet::Parser::Functions
newfunction(:empty, :type => :rvalue, :doc => <<-EOS
EOS
@@ -15,8 +13,8 @@ module Puppet::Parser::Functions
value = arguments[0]
klass = value.class
- if not [Array, Hash, String].include?(klass)
- raise(Puppet::ParseError, 'empty(): Requires either an ' +
+ unless [Array, Hash, String].include?(klass)
+ raise(Puppet::ParseError, 'empty(): Requires either ' +
'array, hash or string to work with')
end