summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/README.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/README.markdown')
-rw-r--r--lib/puppet/parser/functions/README.markdown17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/puppet/parser/functions/README.markdown b/lib/puppet/parser/functions/README.markdown
deleted file mode 100644
index 15d7495..0000000
--- a/lib/puppet/parser/functions/README.markdown
+++ /dev/null
@@ -1,17 +0,0 @@
-Functions
-=========
-
-Define functions in this directory.
-
-File paths should match the function name; for example, a function
-`myfunction`, defined like this:
-
- Puppet::Parser::Functions::newfunction(
- :myfunction,
- :type => :statement,
- :doc => "Documentation here."
- ) do |vals|
- # ...
- end
-
-Should be found in `myfunction.rb` in this directory.