From 575eeb1a1c473ee3425175ac44bbc37fdea55e74 Mon Sep 17 00:00:00 2001 From: Itamar Haber Date: Thu, 21 May 2015 13:24:51 +0300 Subject: [PATCH] Removed incorrect suggestion DEL/INCR/DECR and others could be NTH but apparently never made it to the implementation of SORT --- src/sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sort.c b/src/sort.c index c1b57131..7da4de15 100644 --- a/src/sort.c +++ b/src/sort.c @@ -209,7 +209,7 @@ void sortCommand(redisClient *c) { } /* Create a list of operations to perform for every sorted element. - * Operations can be GET/DEL/INCR/DECR */ + * Operations can be GET */ operations = listCreate(); listSetFreeMethod(operations,zfree); j = 2; /* options start at argv[2] */