Skip to content

Commit f868fd3

Browse files
committed
Small clarification in subscript adverbs
After masak++ made me think about it more
1 parent 7883bce commit f868fd3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

S02-bits.pod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2538,12 +2538,12 @@ These combinations are considered legal and mean the following:
25382538
:delete :!v delete, return values of all keys attempted
25392539
:delete :k delete, return actually deleted keys
25402540
: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
25472547

25482548
An implementation is free to silently ignore any other combinations or
25492549
silently prefer one of the adverbs given above any other.

0 commit comments

Comments
 (0)