Commit 5fd6dee0 authored by antirez's avatar antirez
Browse files

Fixed typo in parseScanCursorOrReply(): ad -> at.

Thanks to @badboy for reporting it.
parent ebcb6251
...@@ -350,7 +350,7 @@ void scanCallback(void *privdata, const dictEntry *de) { ...@@ -350,7 +350,7 @@ void scanCallback(void *privdata, const dictEntry *de) {
if (val) listAddNodeTail(keys, val); 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 * 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 * returns REDIS_OK. Otherwise return REDIS_ERR and send an error to the
* client. */ * client. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment