diff options
author | Travis Fields <travis@puppetlabs.com> | 2015-02-27 17:40:32 -0800 |
---|---|---|
committer | Travis Fields <travis@puppetlabs.com> | 2015-03-02 10:45:43 -0800 |
commit | 85e81f9bdf9d482338c504ff3c658993a24978a0 (patch) | |
tree | ca1ace730605023a3eac479c1be5307856482d0a /README.markdown | |
parent | cd6568039f53a59c145239012e9ada14685eed88 (diff) |
Loosen the restrictions of upcase and allow for recursion of the objects and only worry if the object responds to upcase
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 3d2d1b9..0ea0c4e 100644 --- a/README.markdown +++ b/README.markdown @@ -475,7 +475,7 @@ Takes a single string value as an argument. *Type*: rvalue You can also use this with arrays. For example, `unique(["a","a","b","b","c","c"])` returns ["a","b","c"]. *Type*: rvalue -* `upcase`: Converts a string or an array of strings to uppercase. For example, `upcase("abcd")` returns 'ABCD'. *Type*: rvalue +* `upcase`: Converts an object, array or hash of objects that respond to upcase to uppercase. For example, `upcase("abcd")` returns 'ABCD'. *Type*: rvalue * `uriescape`: Urlencodes a string or array of strings. Requires either a single string or an array as an input. *Type*: rvalue |