aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-04-30 17:43:09 +0000
committerMicah Anderson <micah@riseup.net>2010-09-02 18:10:44 -0400
commit91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9 (patch)
treea0f2a2f6256d10fdcec8dc88be692076ca1e654d
parent61d767b56155650df65397ef326be28c2f35956f (diff)
downloadpuppet-common-91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9.tar.gz
puppet-common-91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9.tar.bz2
fixing typo
-rw-r--r--plugins/puppet/parser/functions/strlength.rb2
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