Commit e0b2e248 authored by Itamar Haber's avatar Itamar Haber Committed by antirez
Browse files

Removed incorrect suggestion

DEL/INCR/DECR and others could be NTH but apparently never made it to the implementation of SORT
parent 0da45316
...@@ -209,7 +209,7 @@ void sortCommand(redisClient *c) { ...@@ -209,7 +209,7 @@ void sortCommand(redisClient *c) {
} }
/* Create a list of operations to perform for every sorted element. /* Create a list of operations to perform for every sorted element.
* Operations can be GET/DEL/INCR/DECR */ * Operations can be GET */
operations = listCreate(); operations = listCreate();
listSetFreeMethod(operations,zfree); listSetFreeMethod(operations,zfree);
j = 2; /* options start at argv[2] */ j = 2; /* options start at argv[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