diff --git a/src/debug.c b/src/debug.c index c64fba2b5b..bdae441005 100644 --- a/src/debug.c +++ b/src/debug.c @@ -410,14 +410,14 @@ void debugCommand(client *c) { "DIGEST-VALUE [ ...]", " Output a hex signature of the values of all the specified keys.", "ERROR ", -" Return a Redis protocol error with as message. Useful for clients", -" unit tests to simulate Redis errors.", +" Return a RESP protocol error with as message. Useful for clients", +" unit tests to simulate error replies.", "LEAK ", " Create a memory leak of the input string.", "LOG ", " Write to the server log.", "HTSTATS [full]", -" Return hash table statistics of the specified Redis database.", +" Return hash table statistics of the specified database.", "HTSTATS-KEY [full]", " Like HTSTATS but for the hash table stored at 's value.", "LOADAOF", @@ -468,7 +468,7 @@ void debugCommand(client *c) { " Crash the server with sigsegv.", "SET-ACTIVE-EXPIRE <0|1>", " Setting it to 0 disables expiring keys in background when they are not", -" accessed (otherwise the Redis behavior). Setting it to 1 reenables back the", +" accessed (otherwise the behavior). Setting it to 1 reenables back the", " default.", "QUICKLIST-PACKED-THRESHOLD ", " Sets the threshold for elements to be inserted as plain vs packed nodes", @@ -480,7 +480,7 @@ void debugCommand(client *c) { "STRINGMATCH-TEST", " Run a fuzz tester against the stringmatchlen() function.", "STRUCTSIZE", -" Return the size of different Redis core C structures.", +" Return the size of different core C structures.", "LISTPACK ", " Show low level info about the listpack encoding of .", "QUICKLIST [<0|1>]", diff --git a/src/server.c b/src/server.c index cd08829440..0c4e5999ae 100644 --- a/src/server.c +++ b/src/server.c @@ -5303,23 +5303,23 @@ void commandGetKeysCommand(client *c) { void commandHelpCommand(client *c) { const char *help[] = { "(no subcommand)", -" Return details about all Redis commands.", +" Return details about all commands.", "COUNT", -" Return the total number of commands in this Redis server.", +" Return the total number of commands in this server.", "LIST", -" Return a list of all commands in this Redis server.", +" Return a list of all commands in this server.", "INFO [ ...]", -" Return details about multiple Redis commands.", +" Return details about multiple commands.", " If no command names are given, documentation details for all", " commands are returned.", "DOCS [ ...]", -" Return documentation details about multiple Redis commands.", +" Return documentation details about multiple commands.", " If no command names are given, documentation details for all", " commands are returned.", "GETKEYS ", -" Return the keys from a full Redis command.", +" Return the keys from a full command.", "GETKEYSANDFLAGS ", -" Return the keys and the access flags from a full Redis command.", +" Return the keys and the access flags from a full command.", NULL };