diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2013-01-27 09:49:15 +0200 |
---|---|---|
committer | Yossi Gottlieb <yossigo@gmail.com> | 2013-01-27 09:49:15 +0200 |
commit | acb73e8a972adadd31450dca9ab8cf74cc82a029 (patch) | |
tree | ccd1ca55a85aec0af719c8ed1012f13883cd6c15 /src/multi.c | |
parent | d195e8bb8225bae62b8a714b9c02a472bc601e2f (diff) | |
parent | c17a7f6fbc82dc6ab34a788f65adc16e84b5777c (diff) | |
download | redis-2.6.9-1.tar.gz |
Merge upstream Redis 2.6.9.2.6.9-1
Diffstat (limited to 'src/multi.c')
-rwxr-xr-x | src/multi.c | 4 |
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; |