summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-29 04:19:30 +0100
committerKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-29 04:19:30 +0100
commitb387d5ef602c4eacb4ad21f2f7a31a7e29b8c217 (patch)
tree784f331f92e99ef2c2c74c813252a57ec85f295e
parent517227c75fe43489a25d4729ad9584b25193d843 (diff)
downloadpuppet-stdlib-b387d5ef602c4eacb4ad21f2f7a31a7e29b8c217.tar.gz
puppet-stdlib-b387d5ef602c4eacb4ad21f2f7a31a7e29b8c217.tar.bz2
Changed wording from numeric to integer.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
-rw-r--r--range.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/range.rb b/range.rb
index a6a9f22..68124e1 100644
--- a/range.rb
+++ b/range.rb
@@ -34,7 +34,7 @@ module Puppet::Parser::Functions
end
end
- # Check whether we have numeric value if so then make it so ...
+ # Check whether we have integer value if so then make it so ...
if start.match(/^\d+$/)
start = start.to_i
stop = stop.to_i