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 5173ae8ab..b88649170 100644 --- a/src/main/java/org/springframework/data/redis/core/ZSetOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ZSetOperations.java @@ -66,8 +66,8 @@ public interface ZSetOperations { * Add {@code value} to a sorted set at {@code key}, or update its {@code score} if it already exists. * * @param key must not be {@literal null}. - * @param score the score. * @param value the value. + * @param score the score. * @return {@literal null} when used in pipeline / transaction. * @see Redis Documentation: ZADD */ @@ -78,8 +78,8 @@ public interface ZSetOperations { * Add {@code value} to a sorted set at {@code key} if it does not already exists. * * @param key must not be {@literal null}. - * @param score the score. * @param value the value. + * @param score the score. * @return {@literal null} when used in pipeline / transaction. * @since 2.5 * @see Redis Documentation: ZADD NX @@ -125,8 +125,8 @@ public interface ZSetOperations { * Increment the score of element with {@code value} in sorted set by {@code increment}. * * @param key must not be {@literal null}. - * @param delta * @param value the value. + * @param delta * @return {@literal null} when used in pipeline / transaction. * @see Redis Documentation: ZINCRBY */