diff options
author | Michael V. O'Brien <michael@reductivelabs.com> | 2007-10-03 18:00:52 -0500 |
---|---|---|
committer | Michael V. O'Brien <michael@reductivelabs.com> | 2007-10-03 18:00:52 -0500 |
commit | 7c8fc8b9bd5aeb406f777f36df5fc52b7db5f454 (patch) | |
tree | 2e53613bfed1ed9b0177c1acb64684141de93ec7 | |
parent | f8c8efeff6f08cf8c23075311ce14bfd4decedb0 (diff) | |
download | puppet-7c8fc8b9bd5aeb406f777f36df5fc52b7db5f454.tar.gz puppet-7c8fc8b9bd5aeb406f777f36df5fc52b7db5f454.tar.xz puppet-7c8fc8b9bd5aeb406f777f36df5fc52b7db5f454.zip |
Fixed #854.
-rw-r--r-- | lib/puppet/parser/functions.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/puppet/parser/functions.rb b/lib/puppet/parser/functions.rb index 7ffdb6ccb..3e5417eef 100644 --- a/lib/puppet/parser/functions.rb +++ b/lib/puppet/parser/functions.rb @@ -200,11 +200,9 @@ module Functions end newfunction(:template, :type => :rvalue, :doc => "Evaluate a template and - return its value. See `the templating docs`_ + return its value. See `the templating docs </trac/puppet/wiki/PuppetTemplating>`_ for more information. Note that if multiple templates are specified, their output is all concatenated and returned as the output of the function. - - .. _the templating docs: /trac/puppet/wiki/PuppetTemplating ") do |vals| require 'erb' |