fix-zset-typo

This commit is contained in:
ZYunH 2019-12-16 22:28:46 +08:00
parent e9b99c78df
commit a57c06bb54
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ int zslDelete(zskiplist *zsl, double score, sds ele, zskiplistNode **node) {
return 0; /* not found */
}
/* Update the score of an elmenent inside the sorted set skiplist.
/* Update the score of an element inside the sorted set skiplist.
* Note that the element must exist and must match 'score'.
* This function does not update the score in the hash table side, the
* caller should take care of it.