summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/hash.rb
diff options
context:
space:
mode:
authorKen Barber <ken@bob.sh>2011-07-29 23:09:30 +0100
committerKen Barber <ken@bob.sh>2011-07-29 23:09:30 +0100
commita1cae426f1d6b8f2c19184ec8aac3ebc47d97744 (patch)
tree2d40ab0b183ae285560569e625ee41df79e39784 /lib/puppet/parser/functions/hash.rb
parent19313b43ea04066a88a0b78e83650ac52785e2e9 (diff)
downloadpuppet-stdlib-a1cae426f1d6b8f2c19184ec8aac3ebc47d97744.tar.gz
puppet-stdlib-a1cae426f1d6b8f2c19184ec8aac3ebc47d97744.tar.bz2
(#3) Provide documentation for remaining functions.
Diffstat (limited to 'lib/puppet/parser/functions/hash.rb')
-rw-r--r--lib/puppet/parser/functions/hash.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/hash.rb b/lib/puppet/parser/functions/hash.rb
index f0c01d4..453ba1e 100644
--- a/lib/puppet/parser/functions/hash.rb
+++ b/lib/puppet/parser/functions/hash.rb
@@ -4,6 +4,13 @@
module Puppet::Parser::Functions
newfunction(:hash, :type => :rvalue, :doc => <<-EOS
+This function converts and array into a hash.
+
+*Examples:*
+
+ hash(['a',1,'b',2,'c',3])
+
+Would return: {'a'=>1,'b'=>2,'c'=>3}
EOS
) do |arguments|