From 92eda5a92414a8178ef1614811778ed374b8b5f1 Mon Sep 17 00:00:00 2001 From: vaan_oxo <44669920+oxo1996@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:22:15 +0900 Subject: [PATCH] Fix incorrect reference to SETNX in ReactiveValueOperations.setIfAbsent Original pull request: #3047 Closes #3047 --- .../data/redis/core/ReactiveValueOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java b/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java index d1ded81eae..92a8c65406 100644 --- a/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java @@ -63,7 +63,7 @@ public interface ReactiveValueOperations { * * @param key must not be {@literal null}. * @param value - * @see Redis Documentation: SETNX + * @see Redis Documentation: SET */ Mono setIfAbsent(K key, V value);