summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppet.com>2016-12-19 17:27:15 +0000
committerGitHub <noreply@github.com>2016-12-19 17:27:15 +0000
commit2894838c2dbb1439ba1a6d19f19737c76662473f (patch)
treee63442e7b0c2119e1559e3475428905138837b18 /README.markdown
parent0d6df4fda791cb07e036365993d4f00f9d0f78aa (diff)
parent3451bd9fdecceab9bce99570a69369737589b9e8 (diff)
Merge pull request #703 from blackknight36/master
Change - Update str2bool documentation
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 5aea25f..a4c30b5 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1079,7 +1079,7 @@ Returns a new string where runs of the same character that occur in this set are
#### `str2bool`
-Converts certain strings to a boolean. This attempts to convert strings that contain the values '1', 't', 'y', or 'yes' to true. Strings that contain values '0', 'f', 'n', or 'no', or that are an empty string or undefined are converted to false. Any other value causes an error. *Type*: rvalue.
+Converts certain strings to a boolean. This attempts to convert strings that contain the values '1', 'true', 't', 'y', or 'yes' to true. Strings that contain values '0', 'false', 'f', 'n', or 'no', or that are an empty string or undefined are converted to false. Any other value causes an error. These checks are case insensitive. *Type*: rvalue.
#### `str2saltedsha512`