From d751d98b508fd86c5e38919167e3564f80d4958e Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 29 Jun 2018 18:02:58 +0200 Subject: [PATCH] Change CLIENT LIST TYPE help string. Making it more similar to KILL. --- src/networking.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/networking.c b/src/networking.c index 4248a52f..b9f17cd7 100644 --- a/src/networking.c +++ b/src/networking.c @@ -1575,8 +1575,8 @@ void clientCommand(client *c) { " addr -- Kill connection made from ", " type (normal|master|slave|pubsub) -- Kill connections by type.", " skipme (yes|no) -- Skip killing current connection (default: yes).", -"list -- Return information about client connections.", -" type (normal|master|slave|pubsub) -- Return information about client connections by type.", +"list [options ...] -- Return information about client connections. Options:", +" type (normal|master|slave|pubsub) -- Return clients of specified type.", "pause -- Suspend all Redis clients for milliseconds.", "reply (on|off|skip) -- Control the replies sent to the current connection.", "setname -- Assign the name to the current connection.",