@@ -2538,12 +2538,12 @@ These combinations are considered legal and mean the following:
2538
2538
:delete :!v delete, return values of all keys attempted
2539
2539
:delete :k delete, return actually deleted keys
2540
2540
:delete :!k delete, return all keys attempted to delete
2541
- :delete :exists delete, return Bools indicating deletion successful
2542
- :delete :!exists delete, return Bools indicating deletion not successful
2543
- :delete :exists :p delete, return pairs with key/True for deleted
2544
- :delete :exists :!p delete, return pairs with key/Bool deletion successful
2545
- :delete :exists :kv delete, return list with key,True for deleted
2546
- :delete :exists :!kv delete, return list with key,Bool deletion successful
2541
+ :delete :exists delete, return Bools indicating keys existed
2542
+ :delete :!exists delete, return Bools indicating keys did not exist
2543
+ :delete :exists :p delete, return pairs with key/True for key existed
2544
+ :delete :exists :!p delete, return pairs with key/Bool whether key existed
2545
+ :delete :exists :kv delete, return list with key,True for key existed
2546
+ :delete :exists :!kv delete, return list with key,Bool whether key existed
2547
2547
2548
2548
An implementation is free to silently ignore any other combinations or
2549
2549
silently prefer one of the adverbs given above any other.
0 commit comments