From 17c54fc942bfacf9e164c26c14e918aad4c63a0a Mon Sep 17 00:00:00 2001 From: sentisso <38100632+sentisso@users.noreply.github.com> Date: Sat, 29 Nov 2025 17:23:31 +0100 Subject: [PATCH] docs: fix typo in ZRANK command description --- content/develop/data-types/sorted-sets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/develop/data-types/sorted-sets.md b/content/develop/data-types/sorted-sets.md index 37cc3b18a2..4780a103d6 100644 --- a/content/develop/data-types/sorted-sets.md +++ b/content/develop/data-types/sorted-sets.md @@ -231,7 +231,7 @@ You'll see that [`ZADD`]({{< relref "/commands/zadd" >}}) returns 0 when the mem * [`ZADD`]({{< relref "/commands/zadd" >}}) adds a new member and associated score to a sorted set. If the member already exists, the score is updated. * [`ZRANGE`]({{< relref "/commands/zrange" >}}) returns members of a sorted set, sorted within a given range. -* [`ZRANK`]({{< relref "/commands/zrank" >}}) returns the rank of the provided member, assuming the sorted is in ascending order. +* [`ZRANK`]({{< relref "/commands/zrank" >}}) returns the rank of the provided member, assuming the sorted set is in ascending order. * [`ZREVRANK`]({{< relref "/commands/zrevrank" >}}) returns the rank of the provided member, assuming the sorted set is in descending order. See the [complete list of sorted set commands]({{< relref "/commands/" >}}?group=sorted-set).