Fix parameter documentation order of ZSetOperations methods.

Closes #2214
This commit is contained in:
zhenqiangyi
2021-12-14 19:28:56 +08:00
committed by Mark Paluch
parent 32d828cd66
commit 6f949f5a8e

View File

@@ -66,8 +66,8 @@ public interface ZSetOperations<K, V> {
* 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 <a href="https://redis.io/commands/zadd">Redis Documentation: ZADD</a>
*/
@@ -78,8 +78,8 @@ public interface ZSetOperations<K, V> {
* 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 <a href="https://redis.io/commands/zadd">Redis Documentation: ZADD NX</a>
@@ -125,8 +125,8 @@ public interface ZSetOperations<K, V> {
* 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 <a href="https://redis.io/commands/zincrby">Redis Documentation: ZINCRBY</a>
*/