Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / pry.rb
index c18ef7e..c6333cc 100644 (file)
@@ -1,16 +1,21 @@
 #
 # 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
+    @summary
+      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.
+
+    @return
+      debugging information
+
+    @example **Usage**
 
-*Examples:*
+      `pry()`
 
-    pry()
-    EOS
-  ) do |arguments|
+    DOC
+             ) do |arguments|
     begin
       require 'pry'
     rescue LoadError