aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-06-10 20:00:31 +0200
committerMicah Anderson <micah@riseup.net>2010-09-02 18:10:52 -0400
commit37b37ae82fbc2867ac759e627f53c5e6a8be687a (patch)
tree71c1662354b696658248b2c9975bcf7d118a16a7
parent91ea4d11ae7ae450b17ae5d35c1539abe7f35fb9 (diff)
downloadpuppet-common-37b37ae82fbc2867ac759e627f53c5e6a8be687a.tar.gz
puppet-common-37b37ae82fbc2867ac759e627f53c5e6a8be687a.tar.bz2
whitespace
-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 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