Skip to content

Commit c7f51a2

Browse files
heowcschauder
authored andcommitted
Fix typo.
Original pull request #2567
1 parent 56c633c commit c7f51a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/springframework/data/redis/core/ListOperations.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ default V rightPop(K key, Duration timeout) {
525525
V rightPopAndLeftPush(K sourceKey, K destinationKey);
526526

527527
/**
528-
* Remove the last element from list at {@code srcKey}, append it to {@code dstKey} and return its value.<br>
528+
* Remove the last element from list at {@code sourceKey}, append it to {@code destinationKey} and return its value.<br>
529529
* <b>Blocks connection</b> until element available or {@code timeout} reached.
530530
*
531531
* @param sourceKey must not be {@literal null}.
@@ -539,7 +539,7 @@ default V rightPop(K key, Duration timeout) {
539539
V rightPopAndLeftPush(K sourceKey, K destinationKey, long timeout, TimeUnit unit);
540540

541541
/**
542-
* Remove the last element from list at {@code srcKey}, append it to {@code dstKey} and return its value.<br>
542+
* Remove the last element from list at {@code sourceKey}, append it to {@code destinationKey} and return its value.<br>
543543
* <b>Blocks connection</b> until element available or {@code timeout} reached.
544544
*
545545
* @param sourceKey must not be {@literal null}.

0 commit comments

Comments
 (0)