diff options
author | mh <mh@immerda.ch> | 2009-04-30 17:43:09 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2010-09-02 18:10:44 -0400 |
commit | 91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9 (patch) | |
tree | a0f2a2f6256d10fdcec8dc88be692076ca1e654d /plugins/puppet | |
parent | 61d767b56155650df65397ef326be28c2f35956f (diff) | |
download | puppet-common-91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9.tar.gz puppet-common-91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9.tar.bz2 |
fixing typo
Diffstat (limited to 'plugins/puppet')
-rw-r--r-- | plugins/puppet/parser/functions/strlength.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/puppet/parser/functions/strlength.rb b/plugins/puppet/parser/functions/strlength.rb index 3b99ed0..8f93e4e 100644 --- a/plugins/puppet/parser/functions/strlength.rb +++ b/plugins/puppet/parser/functions/strlength.rb @@ -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 |