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 349a72e341..21f2278c28 100644 --- a/src/main/java/org/springframework/data/redis/core/ZSetOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ZSetOperations.java @@ -71,8 +71,8 @@ static TypedTuple of(V value, @Nullable Double score) { * 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 */ @@ -83,8 +83,8 @@ static TypedTuple of(V value, @Nullable Double score) { * 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 @@ -130,8 +130,8 @@ static TypedTuple of(V value, @Nullable Double score) { * 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 */