Skip to content

Commit 0a8cf37

Browse files
committed
DATAREDIS-1070 - Polishing.
Fix also BoundZSetOperations and ReactiveZSetOperations. Original pull request: spring-projects#502.
1 parent 6007cdb commit 0a8cf37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public interface BoundZSetOperations<K, V> extends BoundKeyOperations<K> {
170170
* @param min
171171
* @param max
172172
* @return {@literal null} when used in pipeline / transaction.
173-
* @see <a href="https://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a>
173+
* @see <a href="https://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a>
174174
*/
175175
@Nullable
176176
Set<V> reverseRangeByScore(double min, double max);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public interface ReactiveZSetOperations<K, V> {
189189
* @param key must not be {@literal null}.
190190
* @param range
191191
* @return
192-
* @see <a href="https://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a>
192+
* @see <a href="https://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a>
193193
*/
194194
Flux<V> reverseRangeByScore(K key, Range<Double> range);
195195

0 commit comments

Comments
 (0)