From 8ea18fa8d2ea1c27d9f674e30f797dc0c7347ace Mon Sep 17 00:00:00 2001 From: SmartKeyerror Date: Mon, 2 Aug 2021 13:06:36 +0800 Subject: [PATCH] Fix copy-paste typo in t_list.c comment (#9305) --- src/t_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t_list.c b/src/t_list.c index 01fb4eee5b..72be6fe6a8 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -954,7 +954,7 @@ void blpopCommand(client *c) { blockingPopGenericCommand(c,LIST_HEAD); } -/* BLPOP [ ...] */ +/* BRPOP [ ...] */ void brpopCommand(client *c) { blockingPopGenericCommand(c,LIST_TAIL); }