Fixed typo in SCAN comment. iff -> if.

This commit is contained in:
antirez
2013-10-25 11:45:56 +02:00
parent 33409b4c6c
commit 8cdaf604ce

View File

@ -354,7 +354,7 @@ void scanCommand(redisClient *c) {
pat = c->argv[i+1]->ptr;
patlen = sdslen(pat);
/* The pattern is a no-op iff == "*" */
/* The pattern is a no-op if == "*" */
patnoop = (pat[0] == '*' && patlen == 1);
i += 2;