From fac3e8aab55671bc8842214e7384f4174deb6578 Mon Sep 17 00:00:00 2001 From: Baoyi Chen Date: Tue, 12 Jun 2018 08:52:18 +0800 Subject: [PATCH] fix typo fix [#5005](https://github.com/antirez/redis/issues/5005) --- src/t_stream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/t_stream.c b/src/t_stream.c index c826f1602..2e70681f2 100644 --- a/src/t_stream.c +++ b/src/t_stream.c @@ -1554,13 +1554,13 @@ uint64_t streamDelConsumer(streamCG *cg, sds name) { /* XGROUP CREATE * XGROUP SETID - * XGROUP DELGROUP + * XGROUP DESTROY * XGROUP DELCONSUMER */ void xgroupCommand(client *c) { const char *help[] = { "CREATE -- Create a new consumer group.", "SETID -- Set the current group ID.", -"DELGROUP -- Remove the specified group.", +"DESTROY -- Remove the specified group.", "DELCONSUMER -- Remove the specified conusmer.", "HELP -- Prints this help.", NULL