mirror of
https://github.com/redis/redis.git
synced 2026-04-22 19:37:30 -04:00
Fix a typo.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user