summaryrefslogtreecommitdiff
path: root/src/t_string.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-01-19 13:46:14 +0100
committerantirez <antirez@gmail.com>2013-01-19 13:46:14 +0100
commite50cdbe461263db87f910ce963c3e6a222c91835 (patch)
tree3fecbcaf820a8873285ce485069c3cbce294fc0c /src/t_string.c
parent79a0ef62db890c007166a2c09d11691923236716 (diff)
downloadredis-e50cdbe461263db87f910ce963c3e6a222c91835.tar.gz
Additionally two typos fixed thanks to @jodal
Diffstat (limited to 'src/t_string.c')
-rw-r--r--src/t_string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/t_string.c b/src/t_string.c
index 8ba915a58..0a7f22583 100644
--- a/src/t_string.c
+++ b/src/t_string.c
@@ -340,7 +340,7 @@ void incrbyfloatCommand(redisClient *c) {
addReplyBulk(c,new);
/* Always replicate INCRBYFLOAT as a SET command with the final value
- * in order to make sure that differences in float prrcision or formatting
+ * in order to make sure that differences in float precision or formatting
* will not create differences in replicas or after an AOF restart. */
aux = createStringObject("SET",3);
rewriteClientCommandArgument(c,0,aux);