diff options
author | James Fryman <james@frymanet.com> | 2012-11-09 11:08:24 -0600 |
---|---|---|
committer | James Fryman <james@frymanet.com> | 2012-11-15 10:38:03 -0600 |
commit | 88acc523931272deb57eafbb7021f8d32248d68e (patch) | |
tree | 46103ab7b31f280bbbb8edd8a93e0529ed450229 /lib/puppet/parser/functions/str2bool.rb | |
parent | 747dcc6fc7df12d4d64502b0d4a0e35c3d4f8ec7 (diff) | |
download | puppet-stdlib-88acc523931272deb57eafbb7021f8d32248d68e.tar.gz puppet-stdlib-88acc523931272deb57eafbb7021f8d32248d68e.tar.bz2 |
puppet-lint cleanup
Diffstat (limited to 'lib/puppet/parser/functions/str2bool.rb')
-rw-r--r-- | lib/puppet/parser/functions/str2bool.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/functions/str2bool.rb b/lib/puppet/parser/functions/str2bool.rb index c320da6..0509c2b 100644 --- a/lib/puppet/parser/functions/str2bool.rb +++ b/lib/puppet/parser/functions/str2bool.rb @@ -4,7 +4,7 @@ module Puppet::Parser::Functions newfunction(:str2bool, :type => :rvalue, :doc => <<-EOS -This converts a string to a boolean. This attempt to convert strings that +This converts a string to a boolean. This attempt to convert strings that contain things like: y, 1, t, true to 'true' and strings that contain things like: 0, f, n, false, no to 'false'. EOS |