From ca1f70e51ec7387ccb0f55fdf3e51b3fea5219c8 Mon Sep 17 00:00:00 2001 From: gosth Date: Wed, 18 Dec 2019 15:18:02 +0800 Subject: [PATCH] fix typo in sort.c --- src/sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sort.c b/src/sort.c index db26da158..60a932878 100644 --- a/src/sort.c +++ b/src/sort.c @@ -115,7 +115,7 @@ robj *lookupKeyByPattern(redisDb *db, robj *pattern, robj *subst, int writeflag) if (fieldobj) { if (o->type != OBJ_HASH) goto noobj; - /* Retrieve value from hash by the field name. The returend object + /* Retrieve value from hash by the field name. The returned object * is a new object with refcount already incremented. */ o = hashTypeGetValueObject(o, fieldobj->ptr); } else {