Add missing comma in memory/xgroup command help message. (#9210)

This would have resulted in missing newline in the help message
This commit is contained in:
Binbin
2021-07-13 23:16:05 +08:00
committed by GitHub
parent ac8b1df885
commit d0f36eeda0
2 changed files with 2 additions and 2 deletions

View File

@@ -1293,7 +1293,7 @@ void memoryCommand(client *c) {
const char *help[] = {
"DOCTOR",
" Return memory problems reports.",
"MALLOC-STATS"
"MALLOC-STATS",
" Return internal statistics report from the memory allocator.",
"PURGE",
" Attempt to purge dirty pages for reclamation by the allocator.",

View File

@@ -2393,7 +2393,7 @@ void xgroupCommand(client *c) {
" Create a new consumer in the specified group.",
"DELCONSUMER <key> <groupname> <consumer>",
" Remove the specified consumer.",
"DESTROY <key> <groupname>"
"DESTROY <key> <groupname>",
" Remove the specified group.",
"SETID <key> <groupname> <id|$>",
" Set the current group ID.",