Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / pry.rb
index c18ef7e..17b3bc7 100644 (file)
@@ -1,16 +1,15 @@
 #
 # pry.rb
 #
-
 module Puppet::Parser::Functions
-  newfunction(:pry, :type => :statement, :doc => <<-EOS
-This function invokes a pry debugging session in the current scope object. This is useful for debugging manifest code at specific points during a compilation.
+  newfunction(:pry, :type => :statement, :doc => <<-DOC
+    This function invokes a pry debugging session in the current scope object. This is useful for debugging manifest code at specific points during a compilation.
 
-*Examples:*
+    *Examples:*
 
-    pry()
-    EOS
-  ) do |arguments|
+        pry()
+    DOC
+             ) do |arguments|
     begin
       require 'pry'
     rescue LoadError