summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-11-09 21:25:02 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-11-09 21:25:02 +0000
commit10c860f4e05cfb6bb3f6836478e093026e364161 (patch)
tree8c3860a4272619b97abf4fc47dff1b574e53f296 /lib/puppet/parser
parent114cd8ac4191eab4ee0c59a19e8a3e6b4dddc3d3 (diff)
downloadpuppet-10c860f4e05cfb6bb3f6836478e093026e364161.tar.gz
puppet-10c860f4e05cfb6bb3f6836478e093026e364161.tar.xz
puppet-10c860f4e05cfb6bb3f6836478e093026e364161.zip
Slightly more doc updates
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1846 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/functions.rb16
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/puppet/parser/functions.rb b/lib/puppet/parser/functions.rb
index 35c51da7c..ad5f53080 100644
--- a/lib/puppet/parser/functions.rb
+++ b/lib/puppet/parser/functions.rb
@@ -72,21 +72,7 @@ module Functions
def self.functiondocs
autoloader.loadall
- header = %{inMenu: true
-title: Function Reference
-orderInfo: 40
-
-There are two types of functions in Puppet: Statements and rvalues.
-Statements stand on their own and do not return arguments; they are used for
-performing stand-alone work like importing. Rvalues return values and can
-only be used in a statement requiring a value, such as an assignment or a case
-statement.
-
-Here are the functions available in Puppet:
-
-}
-
- ret = header.dup
+ ret = ""
@functions.sort { |a,b| a[0].to_s <=> b[0].to_s }.each do |name, hash|
ret += "* **%s** (*%s*)" % [name, hash[:type]]