From 646e068c8d86c9f49e7380e21f1ccff44fc7bf8f Mon Sep 17 00:00:00 2001 From: Rosty Kerei Date: Mon, 14 Aug 2017 16:47:09 +0200 Subject: [PATCH] DATAREDIS-680 - Fix Javadoc references on ZSet score methods. Point to the correct method in the Redis documentation. Original pull request: #265. --- .../org/springframework/data/redis/core/ZSetOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/redis/core/ZSetOperations.java b/src/main/java/org/springframework/data/redis/core/ZSetOperations.java index 0bb69764a..381cddfe2 100644 --- a/src/main/java/org/springframework/data/redis/core/ZSetOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ZSetOperations.java @@ -284,7 +284,7 @@ public interface ZSetOperations { * @param key must not be {@literal null}. * @param o the value. * @return - * @see Redis Documentation: ZREM + * @see Redis Documentation: ZSCORE */ Double score(K key, Object o);