Fix copy-paste typo in t_list.c comment (#9305)

This commit is contained in:
SmartKeyerror 2021-08-02 13:06:36 +08:00 committed by GitHub
parent 86555ae0f7
commit 8ea18fa8d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -954,7 +954,7 @@ void blpopCommand(client *c) {
blockingPopGenericCommand(c,LIST_HEAD);
}
/* BLPOP <key> [<key> ...] <timeout> */
/* BRPOP <key> [<key> ...] <timeout> */
void brpopCommand(client *c) {
blockingPopGenericCommand(c,LIST_TAIL);
}