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}.