diff options
author | Helen <helen@puppetlabs.com> | 2016-04-26 16:24:32 +0100 |
---|---|---|
committer | Helen <helen@puppetlabs.com> | 2016-04-26 16:24:32 +0100 |
commit | fc1851790554efdb39200d84bab73d08a5249be4 (patch) | |
tree | 70444106b30f5aa041014b181f7f37f2df1395c4 /README.markdown | |
parent | 27236a73b2d6bb362f8125587a8939db562954b8 (diff) | |
parent | 19752a7ff378a35f287bf5351d466a1eae399266 (diff) |
Merge pull request #599 from hunner/fix_delete
Undo changing delete() to delete regex matches
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 2f5faf3..6cedc2a 100644 --- a/README.markdown +++ b/README.markdown @@ -265,7 +265,7 @@ Takes a resource reference and an optional hash of attributes. Returns 'true' if #### `delete` -Deletes all instances of a given element from an array, substring from a string, or key from a hash. Arrays and hashes may also match on regular expressions. For example, `delete(['a','b','c','b'], 'b')` returns ['a','c']; `delete('abracadabra', 'bra')` returns 'acada'. `delete({'a' => 1,'b' => 2,'c' => 3},['b','c'])` returns {'a'=> 1}, `delete(['abf', 'ab', 'ac'], '^ab.*')` returns ['ac']. *Type*: rvalue. +Deletes all instances of a given element from an array, substring from a string, or key from a hash. For example, `delete(['a','b','c','b'], 'b')` returns ['a','c']; `delete('abracadabra', 'bra')` returns 'acada'. `delete({'a' => 1,'b' => 2,'c' => 3},['b','c'])` returns {'a'=> 1}. *Type*: rvalue. #### `delete_at` |