Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
d0f36eed
Unverified
Commit
d0f36eed
authored
Jul 13, 2021
by
Binbin
Committed by
GitHub
Jul 13, 2021
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/object.c
View file @
d0f36eed
...
...
@@ -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."
,
...
...
src/t_stream.c
View file @
d0f36eed
...
...
@@ -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."
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment