summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/chomp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/chomp.rb')
-rw-r--r--lib/puppet/parser/functions/chomp.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/chomp.rb b/lib/puppet/parser/functions/chomp.rb
index e1d788a..c99d139 100644
--- a/lib/puppet/parser/functions/chomp.rb
+++ b/lib/puppet/parser/functions/chomp.rb
@@ -3,7 +3,10 @@
#
module Puppet::Parser::Functions
- newfunction(:chomp, :type => :rvalue, :doc => <<-EOS
+ newfunction(:chomp, :type => :rvalue, :doc => <<-'EOS'
+ Removes the record separator from the end of a string or an array of
+ strings, for example `hello\n` becomes `hello`.
+ Requires a single string or array as an input.
EOS
) do |arguments|