diff options
author | James Turnbull <james@lovedthanlost.net> | 2010-08-12 00:53:10 +1000 |
---|---|---|
committer | Markus Roberts <Markus@reality.com> | 2010-08-11 22:14:40 -0700 |
commit | 62435e551b3118b1663c67d66a9cae9f52607bc7 (patch) | |
tree | ecaa51a4631b345461586e7b118ac6cf3f346c83 /lib/puppet/parser/functions/realize.rb | |
parent | e4b2aa6e48af43e83e6954d9253ef9b38d8c36ae (diff) | |
download | puppet-62435e551b3118b1663c67d66a9cae9f52607bc7.tar.gz puppet-62435e551b3118b1663c67d66a9cae9f52607bc7.tar.xz puppet-62435e551b3118b1663c67d66a9cae9f52607bc7.zip |
Rewrote functions documentation to Markdown
Diffstat (limited to 'lib/puppet/parser/functions/realize.rb')
-rw-r--r-- | lib/puppet/parser/functions/realize.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/realize.rb b/lib/puppet/parser/functions/realize.rb index 4247b8af8..c21ccd14a 100644 --- a/lib/puppet/parser/functions/realize.rb +++ b/lib/puppet/parser/functions/realize.rb @@ -5,7 +5,7 @@ Puppet::Parser::Functions::newfunction(:realize, :doc => "Make a virtual object when you want to know the name of the virtual object and don't want to bother with a full collection. It is slightly faster than a collection, and, of course, is a bit shorter. You must pass the object using a - reference; e.g.: ``realize User[luke]``." ) do |vals| + reference; e.g.: `realize User[luke]`." ) do |vals| coll = Puppet::Parser::Collector.new(self, :nomatter, nil, nil, :virtual) vals = [vals] unless vals.is_a?(Array) coll.resources = vals.flatten |