@@ -71,8 +71,8 @@ static <V> TypedTuple<V> of(V value, @Nullable Double score) {
71
71
* Add {@code value} to a sorted set at {@code key}, or update its {@code score} if it already exists.
72
72
*
73
73
* @param key must not be {@literal null}.
74
- * @param score the score.
75
74
* @param value the value.
75
+ * @param score the score.
76
76
* @return {@literal null} when used in pipeline / transaction.
77
77
* @see <a href="https://redis.io/commands/zadd">Redis Documentation: ZADD</a>
78
78
*/
@@ -83,8 +83,8 @@ static <V> TypedTuple<V> of(V value, @Nullable Double score) {
83
83
* Add {@code value} to a sorted set at {@code key} if it does not already exists.
84
84
*
85
85
* @param key must not be {@literal null}.
86
- * @param score the score.
87
86
* @param value the value.
87
+ * @param score the score.
88
88
* @return {@literal null} when used in pipeline / transaction.
89
89
* @since 2.5
90
90
* @see <a href="https://redis.io/commands/zadd">Redis Documentation: ZADD NX</a>
@@ -130,8 +130,8 @@ static <V> TypedTuple<V> of(V value, @Nullable Double score) {
130
130
* Increment the score of element with {@code value} in sorted set by {@code increment}.
131
131
*
132
132
* @param key must not be {@literal null}.
133
- * @param delta
134
133
* @param value the value.
134
+ * @param delta
135
135
* @return {@literal null} when used in pipeline / transaction.
136
136
* @see <a href="https://redis.io/commands/zincrby">Redis Documentation: ZINCRBY</a>
137
137
*/
0 commit comments