From 267f7f2c97540f6ca1f3db81833e630393933f04 Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 18 Feb 2018 23:12:49 +0100 Subject: [PATCH] Streams: fix error description for XADD when specified ID is small. --- src/t_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t_stream.c b/src/t_stream.c index dc6ac8c61..3352b5b30 100644 --- a/src/t_stream.c +++ b/src/t_stream.c @@ -966,7 +966,7 @@ void xaddCommand(client *c) { &id, id_given ? &id : NULL) == C_ERR) { - addReplyError(c,"The ID specified in XADD is smaller than the " + addReplyError(c,"The ID specified in XADD is equal or smaller than the " "target stream top item"); return; }