diff --git a/src/main/java/org/springframework/data/redis/core/RedisConnectionUtils.java b/src/main/java/org/springframework/data/redis/core/RedisConnectionUtils.java index eff935781..43c913f6d 100644 --- a/src/main/java/org/springframework/data/redis/core/RedisConnectionUtils.java +++ b/src/main/java/org/springframework/data/redis/core/RedisConnectionUtils.java @@ -362,14 +362,14 @@ public abstract class RedisConnectionUtils { if (isPotentiallyThreadBoundCommand(commandToExecute)) { if (log.isDebugEnabled()) { - log.debug(String.format("Invoke '%s' on bound conneciton", method.getName())); + log.debug(String.format("Invoke '%s' on bound connection", method.getName())); } return invoke(method, obj, args); } if (log.isDebugEnabled()) { - log.debug(String.format("Invoke '%s' on unbound conneciton", method.getName())); + log.debug(String.format("Invoke '%s' on unbound connection", method.getName())); } RedisConnection connection = factory.getConnection(); diff --git a/src/main/java/org/springframework/data/redis/core/RedisTemplate.java b/src/main/java/org/springframework/data/redis/core/RedisTemplate.java index f664fcef1..efb4665a0 100644 --- a/src/main/java/org/springframework/data/redis/core/RedisTemplate.java +++ b/src/main/java/org/springframework/data/redis/core/RedisTemplate.java @@ -450,7 +450,7 @@ public class RedisTemplate extends RedisAccessor implements RedisOperation } /** - * Sets the default serializer to use for this template. All serializers (expect the + * Sets the default serializer to use for this template. All serializers (except the * {@link #setStringSerializer(RedisSerializer)}) are initialized to this value unless explicitly set. Defaults to * {@link JdkSerializationRedisSerializer}. *