Skip to content

Commit c8dfe15

Browse files
authored
Fix link in lmove docstring (#1793)
1 parent f82ab33 commit c8dfe15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/commands/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ def lmove(self, first_list, second_list, src="LEFT", dest="RIGHT"):
12441244
pushing it as the first/last element on the destination list.
12451245
Returns the element being popped and pushed.
12461246
1247-
For more information check https://redis.io/commands/lmov
1247+
For more information check https://redis.io/commands/lmove
12481248
"""
12491249
params = [first_list, second_list, src, dest]
12501250
return self.execute_command("LMOVE", *params)

0 commit comments

Comments
 (0)