From 954029d64aff3560cf21ad134f8229f8711afd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Forever=E6=9D=A8?= Date: Tue, 28 Sep 2021 14:07:59 +0800 Subject: [PATCH] Fix command reference in Javadoc. Closes #2176 --- .../org/springframework/data/redis/core/ValueOperations.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/redis/core/ValueOperations.java b/src/main/java/org/springframework/data/redis/core/ValueOperations.java index ae926debc..e46ddf4b5 100644 --- a/src/main/java/org/springframework/data/redis/core/ValueOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ValueOperations.java @@ -188,7 +188,7 @@ public interface ValueOperations { * not exist. * * @param map must not be {@literal null}. - * @param {@literal null} when used in pipeline / transaction. + * @return {@literal null} when used in pipeline / transaction. * @see Redis Documentation: MSETNX */ @Nullable @@ -391,7 +391,7 @@ public interface ValueOperations { * @param offset * @return {@literal null} when used in pipeline / transaction. * @since 1.5 - * @see Redis Documentation: GETBIT + * @see Redis Documentation: GETBIT */ @Nullable Boolean getBit(K key, long offset);