diff options
author | Adrien Thebo <git@somethingsinistral.net> | 2013-03-27 13:40:29 -0700 |
---|---|---|
committer | Adrien Thebo <git@somethingsinistral.net> | 2013-03-27 13:40:29 -0700 |
commit | f0db049924674b6221a272d1b04a0d4131c47674 (patch) | |
tree | 5b7751a1d154dcbb86f3bcb7d78a5e65b59fbdac /README.markdown | |
parent | 893e6107eddaf15beb28dab481b06668ede94061 (diff) | |
parent | 29402f31e73a426dcc449216010834884d0251ec (diff) | |
download | puppet-stdlib-f0db049924674b6221a272d1b04a0d4131c47674.tar.gz puppet-stdlib-f0db049924674b6221a272d1b04a0d4131c47674.tar.bz2 |
Merge branch 'pull-138'
This closes GH-138.
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 121b784..336d0ab 100644 --- a/README.markdown +++ b/README.markdown @@ -479,7 +479,7 @@ prefix ------ This function applies a prefix to all elements in an array. -*Examles:* +*Examples:* prefix(['a','b','c'], 'p') @@ -661,6 +661,19 @@ Would result in: "aaa" - *Type*: rvalue +suffix +------ +This function applies a suffix to all elements in an array. + +*Examples:* + + suffix(['a','b','c'], 'p') + +Will return: ['ap','bp','cp'] + + +- *Type*: rvalue + swapcase -------- This function will swap the existing case of a string. |