summaryrefslogtreecommitdiff
path: root/src/multi.c
diff options
context:
space:
mode:
authorYossi Gottlieb <yossigo@gmail.com>2013-01-27 09:49:15 +0200
committerYossi Gottlieb <yossigo@gmail.com>2013-01-27 09:49:15 +0200
commitacb73e8a972adadd31450dca9ab8cf74cc82a029 (patch)
treeccd1ca55a85aec0af719c8ed1012f13883cd6c15 /src/multi.c
parentd195e8bb8225bae62b8a714b9c02a472bc601e2f (diff)
parentc17a7f6fbc82dc6ab34a788f65adc16e84b5777c (diff)
downloadredis-2.6.9-1.tar.gz
Merge upstream Redis 2.6.9.2.6.9-1
Diffstat (limited to 'src/multi.c')
-rwxr-xr-xsrc/multi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/multi.c b/src/multi.c
index bcd263236..2b7e6b552 100755
--- a/src/multi.c
+++ b/src/multi.c
@@ -102,7 +102,7 @@ void discardCommand(redisClient *c) {
}
/* Send a MULTI command to all the slaves and AOF file. Check the execCommand
- * implememntation for more information. */
+ * implementation for more information. */
void execCommandReplicateMulti(redisClient *c) {
robj *multistring = createStringObject("MULTI",5);
@@ -223,7 +223,7 @@ void watchForKey(redisClient *c, robj *key) {
incrRefCount(key);
}
listAddNodeTail(clients,c);
- /* Add the new key to the lits of keys watched by this client */
+ /* Add the new key to the list of keys watched by this client */
wk = zmalloc(sizeof(*wk));
wk->key = key;
wk->db = c->db;