summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItamar Haber <itamar@redislabs.com>2018-06-09 20:54:05 +0300
committerGitHub <noreply@github.com>2018-06-09 20:54:05 +0300
commit21ef0376feaaacee22b7913cb08948f65f9b8198 (patch)
tree166c50b63c4e5aca4a12e388f5f5229297edf3c3
parentc199280edb7ad344bb3d2af7572469f74d506da7 (diff)
downloadredis-21ef0376feaaacee22b7913cb08948f65f9b8198.tar.gz
Capitalizes subscommands
-rw-r--r--src/module.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/module.c b/src/module.c
index e4d6e2cf2..3aaa94fe4 100644
--- a/src/module.c
+++ b/src/module.c
@@ -4501,9 +4501,9 @@ void moduleCommand(client *c) {
char *subcmd = c->argv[1]->ptr;
if (c->argc == 2 && !strcasecmp(subcmd,"help")) {
const char *help[] = {
-"list -- Return a list of loaded modules.",
-"load <path> [arg ...] -- Load a module library from <path>.",
-"unload <name> -- Unload a module.",
+"LIST -- Return a list of loaded modules.",
+"LOAD <path> [arg ...] -- Load a module library from <path>.",
+"UNLOAD <name> -- Unload a module.",
NULL
};
addReplyHelp(c, help);