Fixed typo in SCAN comment. iff -> if.

This commit is contained in:
antirez 2013-10-25 11:45:56 +02:00
parent 9c88ace927
commit 43fdf3b404

View File

@ -364,7 +364,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;