From 9b2b67acc0860e25027c28569a776140bc37d35c Mon Sep 17 00:00:00 2001 From: Brad Dunbar Date: Fri, 24 Apr 2020 11:46:22 -0400 Subject: [PATCH] Fix a typo. --- src/t_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t_string.c b/src/t_string.c index d4eb04769..d20cba4e6 100644 --- a/src/t_string.c +++ b/src/t_string.c @@ -316,7 +316,7 @@ void msetGenericCommand(client *c, int nx) { } /* Handle the NX flag. The MSETNX semantic is to return zero and don't - * set anything if at least one key alerady exists. */ + * set anything if at least one key already exists. */ if (nx) { for (j = 1; j < c->argc; j += 2) { if (lookupKeyWrite(c->db,c->argv[j]) != NULL) {