Unverified Commit d0f36eed authored by Binbin's avatar Binbin Committed by GitHub
Browse files

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

This would have resulted in missing newline in the help message
parent ac8b1df8
...@@ -1293,7 +1293,7 @@ void memoryCommand(client *c) { ...@@ -1293,7 +1293,7 @@ void memoryCommand(client *c) {
const char *help[] = { const char *help[] = {
"DOCTOR", "DOCTOR",
" Return memory problems reports.", " Return memory problems reports.",
"MALLOC-STATS" "MALLOC-STATS",
" Return internal statistics report from the memory allocator.", " Return internal statistics report from the memory allocator.",
"PURGE", "PURGE",
" Attempt to purge dirty pages for reclamation by the allocator.", " Attempt to purge dirty pages for reclamation by the allocator.",
......
...@@ -2393,7 +2393,7 @@ void xgroupCommand(client *c) { ...@@ -2393,7 +2393,7 @@ void xgroupCommand(client *c) {
" Create a new consumer in the specified group.", " Create a new consumer in the specified group.",
"DELCONSUMER <key> <groupname> <consumer>", "DELCONSUMER <key> <groupname> <consumer>",
" Remove the specified consumer.", " Remove the specified consumer.",
"DESTROY <key> <groupname>" "DESTROY <key> <groupname>",
" Remove the specified group.", " Remove the specified group.",
"SETID <key> <groupname> <id|$>", "SETID <key> <groupname> <id|$>",
" Set the current group ID.", " Set the current group ID.",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment