Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / keys.rb
index f3663b7..80d080c 100644 (file)
@@ -3,10 +3,14 @@
 #
 module Puppet::Parser::Functions
   newfunction(:keys, :type => :rvalue, :doc => <<-DOC
-    Returns the keys of a hash as an array.
+    @summary
+      **Deprecated:** Returns the keys of a hash as an array.
 
-    Note: from Puppet 5.5.0, the compatible function with the same name in Puppet core
-    will be used instead of this function.
+    @return [Array]
+      An array containing each of the hashes key values.
+
+    > **Note:** **Deprecated** from Puppet 5.5.0, the built-in [`keys`](https://puppet.com/docs/puppet/latest/function.html#keys)
+    function will be used instead of this function.
     DOC
              ) do |arguments|