From 10c860f4e05cfb6bb3f6836478e093026e364161 Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 9 Nov 2006 21:25:02 +0000 Subject: Slightly more doc updates git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1846 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/parser/functions.rb | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'lib/puppet/parser') 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]] -- cgit