Fix typos

Closes #1513
This commit is contained in:
Aaron Rutkovsky
2014-01-16 22:02:38 -06:00
committed by antirez
parent 01bdf82cf2
commit cc4162ff44
4 changed files with 7 additions and 7 deletions

2
deps/hiredis/test.c vendored
View File

@ -51,7 +51,7 @@ static redisContext *select_database(redisContext *c) {
assert(reply != NULL);
freeReplyObject(reply);
/* Make sure the DB is emtpy */
/* Make sure the DB is empty */
reply = redisCommand(c,"DBSIZE");
assert(reply != NULL);
if (reply->type == REDIS_REPLY_INTEGER && reply->integer == 0) {