diff options
author | mh <mh@immerda.ch> | 2009-06-10 20:00:31 +0200 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2010-09-02 18:10:52 -0400 |
commit | 37b37ae82fbc2867ac759e627f53c5e6a8be687a (patch) | |
tree | 71c1662354b696658248b2c9975bcf7d118a16a7 | |
parent | 91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9 (diff) | |
download | puppet-common-37b37ae82fbc2867ac759e627f53c5e6a8be687a.tar.gz puppet-common-37b37ae82fbc2867ac759e627f53c5e6a8be687a.tar.bz2 |
whitespace
-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 8f93e4e..147b24a 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| - args[0].to_s.length + args[0].to_s.length end end |