summaryrefslogtreecommitdiff
path: root/src/geo.c
diff options
context:
space:
mode:
authorLeibale Eidelman <me@leibale.com>2023-05-09 07:24:37 -0400
committerGitHub <noreply@github.com>2023-05-09 14:24:37 +0300
commite04ebdb8d3f558b27ecdc6555a33ed91966371cd (patch)
treeb165f7e927d2e9a0213e88ad1a59b8dfdf1582fc /src/geo.c
parent6ab2174d37185cd20280ff3e0f7f287ebefd4c92 (diff)
downloadredis-e04ebdb8d3f558b27ecdc6555a33ed91966371cd.tar.gz
fix `GEORADIUS[BYMEMBER]` `STORE` & `STOREDIST` args spec (#12151)
in GEO commands, `STORE` and `STOREDIST` are mutually exclusive. use `oneof` block to contain them
Diffstat (limited to 'src/geo.c')
-rw-r--r--src/geo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geo.c b/src/geo.c
index a1781a5b0..4ebd678b5 100644
--- a/src/geo.c
+++ b/src/geo.c
@@ -513,7 +513,7 @@ void geoaddCommand(client *c) {
#define GEOSEARCHSTORE (1<<4) /* GEOSEARCHSTORE just accept STOREDIST option */
/* GEORADIUS key x y radius unit [WITHDIST] [WITHHASH] [WITHCOORD] [ASC|DESC]
- * [COUNT count [ANY]] [STORE key] [STOREDIST key]
+ * [COUNT count [ANY]] [STORE key|STOREDIST key]
* GEORADIUSBYMEMBER key member radius unit ... options ...
* GEOSEARCH key [FROMMEMBER member] [FROMLONLAT long lat] [BYRADIUS radius unit]
* [BYBOX width height unit] [WITHCOORD] [WITHDIST] [WITHASH] [COUNT count [ANY]] [ASC|DESC]