summaryrefslogtreecommitdiff
path: root/chomp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chomp.rb')
-rw-r--r--chomp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chomp.rb b/chomp.rb
index aba9e8d..e1d788a 100644
--- a/chomp.rb
+++ b/chomp.rb
@@ -19,7 +19,7 @@ module Puppet::Parser::Functions
end
if value.is_a?(Array)
- # Numbers in Puppet are often string-encoded ...
+ # Numbers in Puppet are often string-encoded which is troublesome ...
result = value.collect { |i| i.is_a?(String) ? i.chomp : i }
else
result = value.chomp