diff options
author | David Schmitt <david.schmitt@puppetlabs.com> | 2015-08-24 14:36:20 +0100 |
---|---|---|
committer | David Schmitt <david.schmitt@puppetlabs.com> | 2015-08-24 14:36:20 +0100 |
commit | 24e57b5d2849982d5a927f43d698ff7f312ab93a (patch) | |
tree | 315a8a912f1bd8d17530b84bdb923b45596cae3d /README.markdown | |
parent | 1d89df906e1ae1d09a862974181663caaf8012c6 (diff) | |
parent | 1d9189d860f28067b72093cbe4027cf49b7d612c (diff) |
Merge pull request #507 from Jetroid/mod2456
(MODULES-2456) Modify union to accept more than two arrays
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 f949dca..e71241f 100644 --- a/README.markdown +++ b/README.markdown @@ -704,7 +704,7 @@ Returns the literal type when passed a value. Requires the new parser. Useful fo #### `union` -Returns a union of two arrays, without duplicates. For example, `union(["a","b","c"],["b","c","d"])` returns ["a","b","c","d"]. +Returns a union of two or more arrays, without duplicates. For example, `union(["a","b","c"],["b","c","d"])` returns ["a","b","c","d"]. #### `unique` |