@@ -66,8 +66,8 @@ static <V> TypedTuple<V> of(V value, @Nullable Double score) {
66
66
* Add {@code value} to a sorted set at {@code key}, or update its {@code score} if it already exists.
67
67
*
68
68
* @param key must not be {@literal null}.
69
- * @param score the score.
70
69
* @param value the value.
70
+ * @param score the score.
71
71
* @return {@literal null} when used in pipeline / transaction.
72
72
* @see <a href="https://redis.io/commands/zadd">Redis Documentation: ZADD</a>
73
73
*/
@@ -78,8 +78,8 @@ static <V> TypedTuple<V> of(V value, @Nullable Double score) {
78
78
* Add {@code value} to a sorted set at {@code key} if it does not already exists.
79
79
*
80
80
* @param key must not be {@literal null}.
81
- * @param score the score.
82
81
* @param value the value.
82
+ * @param score the score.
83
83
* @return {@literal null} when used in pipeline / transaction.
84
84
* @since 2.5
85
85
* @see <a href="https://redis.io/commands/zadd">Redis Documentation: ZADD NX</a>
@@ -125,8 +125,8 @@ static <V> TypedTuple<V> of(V value, @Nullable Double score) {
125
125
* Increment the score of element with {@code value} in sorted set by {@code increment}.
126
126
*
127
127
* @param key must not be {@literal null}.
128
- * @param delta
129
128
* @param value the value.
129
+ * @param delta
130
130
* @return {@literal null} when used in pipeline / transaction.
131
131
* @see <a href="https://redis.io/commands/zincrby">Redis Documentation: ZINCRBY</a>
132
132
*/
0 commit comments