summaryrefslogtreecommitdiff
path: root/src/object.c
diff options
context:
space:
mode:
authorItamar Haber <itamar@redislabs.com>2017-12-15 21:21:12 +0200
committerItamar Haber <itamar@redislabs.com>2017-12-15 21:21:12 +0200
commitd49bfc40808652389e3e3c3a0db3667153c3c14f (patch)
tree3e79518af8f96da0ae6afd4e08482bcd12db5c60 /src/object.c
parent7820377d0084ac400345047ab67c0752e98897d8 (diff)
downloadredis-d49bfc40808652389e3e3c3a0db3667153c3c14f.tar.gz
Uppercases subcommands in OBJECT HELP
Diffstat (limited to 'src/object.c')
-rw-r--r--src/object.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/object.c b/src/object.c
index 606cdd7e5..b979b458a 100644
--- a/src/object.c
+++ b/src/object.c
@@ -1073,10 +1073,10 @@ void objectCommand(client *c) {
if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"help")) {
const char *help[] = {
-"encoding <key> -- Return the kind of internal representation used in order to store the value associated with a key.",
-"freq <key> -- Return the access frequency index of the key. The returned integer is proportional to the logarithm of the recent access frequency of the key.",
-"idletime <key> -- Return the idle time of the key, that is the approximated number of seconds elapsed since the last access to the key.",
-"refcount <key> -- Return the number of references of the value associated with the specified key.",
+"ENCODING <key> -- Return the kind of internal representation used in order to store the value associated with a key.",
+"FREQ <key> -- Return the access frequency index of the key. The returned integer is proportional to the logarithm of the recent access frequency of the key.",
+"IDLETIME <key> -- Return the idle time of the key, that is the approximated number of seconds elapsed since the last access to the key.",
+"REFCOUNT <key> -- Return the number of references of the value associated with the specified key.",
NULL
};
addReplyHelp(c, help);