summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorMichael Watters <michael.watters@dart.biz>2016-12-19 12:23:36 -0500
committerMichael Watters <michael.watters@dart.biz>2016-12-19 12:23:36 -0500
commit3451bd9fdecceab9bce99570a69369737589b9e8 (patch)
treee63442e7b0c2119e1559e3475428905138837b18 /README.markdown
parent0d6df4fda791cb07e036365993d4f00f9d0f78aa (diff)
Change - Update str2bool documentation
Updated documentation for this function to be consistent with the function itself.
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`