summaryrefslogtreecommitdiff
path: root/deps/hiredis
diff options
context:
space:
mode:
authorAaron Rutkovsky <aaron.rutkovsky@gmail.com>2014-01-16 22:02:38 -0600
committerMatt Stancliff <matt@genges.com>2014-09-29 06:49:07 -0400
commit3a82b8ac641120c231f4f7e8a2edc0bd1c40a399 (patch)
treeb2b49541a20eb59c7e9cff479b5568e0bfd29097 /deps/hiredis
parent9f98b29cefc337d607016cea57216cde1c25dd47 (diff)
downloadredis-3a82b8ac641120c231f4f7e8a2edc0bd1c40a399.tar.gz
Fix typos
Closes #1513
Diffstat (limited to 'deps/hiredis')
-rw-r--r--deps/hiredis/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/hiredis/test.c b/deps/hiredis/test.c
index 713cc06c5..2cc35a46f 100644
--- a/deps/hiredis/test.c
+++ b/deps/hiredis/test.c
@@ -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) {