From fefde6e3e4addf860829d4848386d90889590eac Mon Sep 17 00:00:00 2001 From: Itamar Haber Date: Sat, 9 Jun 2018 21:03:52 +0300 Subject: Capitalizes subcommands & orders lexicographically --- src/slowlog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/slowlog.c') diff --git a/src/slowlog.c b/src/slowlog.c index aed5707da..27f18e138 100644 --- a/src/slowlog.c +++ b/src/slowlog.c @@ -142,11 +142,11 @@ void slowlogReset(void) { void slowlogCommand(client *c) { if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"help")) { const char *help[] = { -"get [count] -- Return top entries from the slowlog (default: 10)." +"GET [count] -- Return top entries from the slowlog (default: 10)." " Entries are made of:", " id, timestamp, time in microseconds, arguments array, client IP and port, client name", -"len -- Return the length of the slowlog.", -"reset -- Reset the slowlog.", +"LEN -- Return the length of the slowlog.", +"RESET -- Reset the slowlog.", NULL }; addReplyHelp(c, help); -- cgit v1.2.1