summaryrefslogtreecommitdiff
path: root/chop.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chop.rb')
-rw-r--r--chop.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chop.rb b/chop.rb
index 32ce040..0f9af86 100644
--- a/chop.rb
+++ b/chop.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.chop : i }
else
result = value.chop