SCRIPT FLUSH comment minor pedantic improvement.

This commit is contained in:
antirez 2013-06-25 10:56:59 +02:00
parent 82ea1c6f5d
commit e27b136069

View File

@ -1020,7 +1020,7 @@ void scriptCommand(redisClient *c) {
if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"flush")) {
scriptingReset();
addReply(c,shared.ok);
server.dirty++; /* Replicating this command is a good idea. */
server.dirty++; /* Propagating this command is a good idea. */
} else if (c->argc >= 2 && !strcasecmp(c->argv[1]->ptr,"exists")) {
int j;