Fix command reference in Javadoc.

Closes #2176
This commit is contained in:
Forever杨
2021-09-28 14:07:59 +08:00
committed by Mark Paluch
parent 05aeaf9cb4
commit 954029d64a

View File

@@ -188,7 +188,7 @@ public interface ValueOperations<K, V> {
* 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 <a href="https://redis.io/commands/msetnx">Redis Documentation: MSETNX</a>
*/
@Nullable
@@ -391,7 +391,7 @@ public interface ValueOperations<K, V> {
* @param offset
* @return {@literal null} when used in pipeline / transaction.
* @since 1.5
* @see <a href="https://redis.io/commands/setbit">Redis Documentation: GETBIT</a>
* @see <a href="https://redis.io/commands/getbit">Redis Documentation: GETBIT</a>
*/
@Nullable
Boolean getBit(K key, long offset);