From fc6ea07b7a6599caf54848010979dd52c855c7da Mon Sep 17 00:00:00 2001 From: Todd Merrill Date: Tue, 2 Nov 2021 16:10:30 +0100 Subject: [PATCH] Small documentation typo --- .../org/springframework/data/redis/core/RedisOperations.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/redis/core/RedisOperations.java b/src/main/java/org/springframework/data/redis/core/RedisOperations.java index 4c0fd98276..d4404435d7 100644 --- a/src/main/java/org/springframework/data/redis/core/RedisOperations.java +++ b/src/main/java/org/springframework/data/redis/core/RedisOperations.java @@ -44,6 +44,7 @@ * @author Ninad Divadkar * @author Mark Paluch * @author ihaohong + * @author Todd Merrill */ public interface RedisOperations { @@ -277,7 +278,7 @@ T execute(RedisScript script, RedisSerializer argsSerializer, RedisSer void rename(K oldKey, K newKey); /** - * Rename key {@code oleName} to {@code newKey} only if {@code newKey} does not exist. + * Rename key {@code oldKey} to {@code newKey} only if {@code newKey} does not exist. * * @param oldKey must not be {@literal null}. * @param newKey must not be {@literal null}.