Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / assert_private.rb
index 62e2c6b..9cdebb9 100644 (file)
@@ -1,20 +1,19 @@
 #
 # assert_private.rb
 #
-
 module Puppet::Parser::Functions
-  newfunction(:assert_private, :doc => <<-'EOS'
+  newfunction(:assert_private, :doc => <<-DOC
     Sets the current class or definition as private.
     Calling the class or definition from outside the current module will fail.
-    EOS
-  ) do |args|
+    DOC
+             ) do |args|
 
     raise(Puppet::ParseError, "assert_private(): Wrong number of arguments given (#{args.size}}) for 0 or 1)") if args.size > 1
 
     scope = self
     if scope.lookupvar('module_name') != scope.lookupvar('caller_module_name')
       message = nil
-      if args[0] and args[0].is_a? String
+      if args[0] && args[0].is_a?(String)
         message = args[0]
       else
         manifest_name = scope.source.name