From 6e98e93c5fa1166b8b8b3940bf5ae704e13073c3 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 5 Nov 2013 17:23:11 +0100 Subject: [PATCH] Fixed typo in parseScanCursorOrReply(): ad -> at. Thanks to @badboy for reporting it. --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index 8d538662e..1bdcf9e83 100644 --- a/src/db.c +++ b/src/db.c @@ -350,7 +350,7 @@ void scanCallback(void *privdata, const dictEntry *de) { if (val) listAddNodeTail(keys, val); } -/* Try to parse a SCAN cursor stored ad object 'o': +/* Try to parse a SCAN cursor stored at object 'o': * if the cursor is valid, store it as unsigned integer into *cursor and * returns REDIS_OK. Otherwise return REDIS_ERR and send an error to the * client. */