summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkuli <akuviljanen17@gmail.com>2021-12-15 14:26:31 +0200
committerGitHub <noreply@github.com>2021-12-15 14:26:31 +0200
commitc8dfe158ad0d28ad62965d5da9fb8dc860251be0 (patch)
treef5064eade7d1ff69dcd0db99392a2ef37ca6c59e
parentf82ab336c3e249ee871ee5e50e10c0de08c4f38a (diff)
downloadredis-py-c8dfe158ad0d28ad62965d5da9fb8dc860251be0.tar.gz
Fix link in lmove docstring (#1793)
-rw-r--r--redis/commands/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands/core.py b/redis/commands/core.py
index fec3095..62e3ba8 100644
--- a/redis/commands/core.py
+++ b/redis/commands/core.py
@@ -1244,7 +1244,7 @@ class BasicKeyCommands:
pushing it as the first/last element on the destination list.
Returns the element being popped and pushed.
- For more information check https://redis.io/commands/lmov
+ For more information check https://redis.io/commands/lmove
"""
params = [first_list, second_list, src, dest]
return self.execute_command("LMOVE", *params)