Skip to content

Commit 2b066a4

Browse files
oxo1996marcingrzejszczak
authored andcommitted
Fix incorrect reference to SETNX in ReactiveValueOperations.setIfAbsent
Original pull request: #3047 Closes #3047
1 parent b975572 commit 2b066a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public interface ReactiveValueOperations<K, V> {
6363
*
6464
* @param key must not be {@literal null}.
6565
* @param value
66-
* @see <a href="https://redis.io/commands/setnx">Redis Documentation: SETNX</a>
66+
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
6767
*/
6868
Mono<Boolean> setIfAbsent(K key, V value);
6969

0 commit comments

Comments
 (0)