X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/a4460ef43f9625e6c09cdc327614d1b47c043489..4eddb121563a9e50cf2ee66e2a0ff7c186dd696a:/doc/LpopCommand.html diff --git a/doc/LpopCommand.html b/doc/LpopCommand.html index 8750a668..58dffb93 100644 --- a/doc/LpopCommand.html +++ b/doc/LpopCommand.html @@ -16,7 +16,7 @@
Atomically return and remove the first (LPOP) or last (RPOP) elementof the list. For example if the list contains the elements "a","b","c" LPOPwill return "a" and the list will become "b","c".
If the key does not exist or the list is already empty the specialvalue 'nil' is returned.-