Commit 854b8be6 authored by antirez's avatar antirez
Browse files

Revert "Fixed typo in SCAN comment. iff -> if."

Probably here Pieter means "if and only if".

This reverts commit 43fdf3b4.
parent 5fa5153b
...@@ -352,7 +352,7 @@ void scanCommand(redisClient *c) { ...@@ -352,7 +352,7 @@ void scanCommand(redisClient *c) {
pat = c->argv[i+1]->ptr; pat = c->argv[i+1]->ptr;
patlen = sdslen(pat); patlen = sdslen(pat);
/* The pattern is a no-op if == "*" */ /* The pattern is a no-op iff == "*" */
patnoop = (pat[0] == '*' && patlen == 1); patnoop = (pat[0] == '*' && patlen == 1);
i += 2; i += 2;
......
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