mirror of
https://github.com/fluencelabs/redis
synced 2025-06-10 15:51:21 +00:00
Fix function names in zslDeleteNode() top comment.
This commit is contained in:
@ -186,7 +186,8 @@ zskiplistNode *zslInsert(zskiplist *zsl, double score, sds ele) {
|
||||
return x;
|
||||
}
|
||||
|
||||
/* Internal function used by zslDelete, zslDeleteByScore and zslDeleteByRank */
|
||||
/* Internal function used by zslDelete, zslDeleteRangeByScore and
|
||||
* zslDeleteRangeByRank. */
|
||||
void zslDeleteNode(zskiplist *zsl, zskiplistNode *x, zskiplistNode **update) {
|
||||
int i;
|
||||
for (i = 0; i < zsl->level; i++) {
|
||||
|
Reference in New Issue
Block a user