Skip to content

Commit

Permalink
Fix incorrect reference to SETNX in ReactiveValueOperations.setIfAbsent
Browse files Browse the repository at this point in the history
Original pull request: #3047
Closes #3047
  • Loading branch information
oxo1996 authored and marcingrzejszczak committed Nov 26, 2024
1 parent 6853b6b commit 92eda5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface ReactiveValueOperations<K, V> {
*
* @param key must not be {@literal null}.
* @param value
* @see <a href="https://redis.io/commands/setnx">Redis Documentation: SETNX</a>
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
*/
Mono<Boolean> setIfAbsent(K key, V value);

Expand Down

0 comments on commit 92eda5a

Please sign in to comment.