diff options
author | Jeff McCune <jeff@puppetlabs.com> | 2012-11-19 11:23:50 -0500 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2012-11-19 11:23:50 -0500 |
commit | 326a13908ba8a725a85330d040e3c5cc0b211524 (patch) | |
tree | 7de72ae30323b32c529b9a1e34e27277ca1afe85 /lib/puppet/parser/functions/str2bool.rb | |
parent | f40bb1e28808f346ce44c9197549681165fe233f (diff) | |
parent | 88acc523931272deb57eafbb7021f8d32248d68e (diff) | |
download | puppet-stdlib-326a13908ba8a725a85330d040e3c5cc0b211524.tar.gz puppet-stdlib-326a13908ba8a725a85330d040e3c5cc0b211524.tar.bz2 |
Merge branch 'jfryman-master'
* jfryman-master:
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 |