From c7f51a20738b56d4d8a9afbd2460357764ed996d Mon Sep 17 00:00:00 2001 From: Wonchul Heo Date: Tue, 25 Apr 2023 13:33:15 +0900 Subject: [PATCH] Fix typo. Original pull request #2567 --- .../org/springframework/data/redis/core/ListOperations.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/redis/core/ListOperations.java b/src/main/java/org/springframework/data/redis/core/ListOperations.java index 01c2848c9..b838754b5 100644 --- a/src/main/java/org/springframework/data/redis/core/ListOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ListOperations.java @@ -525,7 +525,7 @@ public interface ListOperations { V rightPopAndLeftPush(K sourceKey, K destinationKey); /** - * Remove the last element from list at {@code srcKey}, append it to {@code dstKey} and return its value.
+ * Remove the last element from list at {@code sourceKey}, append it to {@code destinationKey} and return its value.
* Blocks connection until element available or {@code timeout} reached. * * @param sourceKey must not be {@literal null}. @@ -539,7 +539,7 @@ public interface ListOperations { V rightPopAndLeftPush(K sourceKey, K destinationKey, long timeout, TimeUnit unit); /** - * Remove the last element from list at {@code srcKey}, append it to {@code dstKey} and return its value.
+ * Remove the last element from list at {@code sourceKey}, append it to {@code destinationKey} and return its value.
* Blocks connection until element available or {@code timeout} reached. * * @param sourceKey must not be {@literal null}.