summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorTP Honey <tphoney@users.noreply.github.com>2015-09-09 11:20:18 +0100
committerTP Honey <tphoney@users.noreply.github.com>2015-09-09 11:20:18 +0100
commit2a7a93ffb49b2ae63d4fd09982fd8c382c1f4b5a (patch)
tree772579a612c2df74e96b82a6588673da55cf34c2 /README.markdown
parent00b11c20c87c028d2206e444c321a8b43d7aa52b (diff)
parentf2f2db4795fc0e3b9387e1e6c003e8e75efde903 (diff)
downloadpuppet-stdlib-2a7a93ffb49b2ae63d4fd09982fd8c382c1f4b5a.tar.gz
puppet-stdlib-2a7a93ffb49b2ae63d4fd09982fd8c382c1f4b5a.tar.bz2
Merge pull request #518 from logicminds/case_insensitive
accept any case of boolean strings
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index d345947..f95d37d 100644
--- a/README.markdown
+++ b/README.markdown
@@ -623,7 +623,7 @@ Returns a new string where runs of the same character that occur in this set are
#### `str2bool`
-Converts a string to a boolean. This attempts to convert strings that contain values such as '1', 't', 'y', and 'yes' to 'true' and strings that contain values such as '0', 'f', 'n', and 'no' to 'false'. *Type*: rvalue.
+Converts a string to a boolean regardless of case. This attempts to convert strings that contain values such as '1', 't', 'y', 'Y', 'YES','yes', and 'TRUE' to 'true' and strings that contain values such as '0', 'f','F', 'N','n', 'NO','FALSE', and 'no' to 'false'. *Type*: rvalue.
#### `str2saltedsha512`