Fix a typo.

This commit is contained in:
Brad Dunbar 2020-04-24 11:46:22 -04:00
parent 022f09447b
commit 9b2b67acc0
No known key found for this signature in database
GPG Key ID: C32E3CC9B201C719
1 changed files with 1 additions and 1 deletions

View File

@ -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) {