fixing typo

This commit is contained in:
mh 2009-04-30 17:43:09 +00:00 committed by Micah Anderson
parent 61d767b561
commit 91ea4d11ae

View file

@ -1,6 +1,6 @@
module Puppet::Parser::Functions
newfunction(:strlength, :type => :rvalue) do |args|
argv[0].to_s.length
args[0].to_s.length
end
end