From ba59b68aa9494c29e284ed45e924267d7388baa9 Mon Sep 17 00:00:00 2001 From: Chris Chapman Date: Thu, 13 Oct 2022 01:18:02 -0700 Subject: [PATCH] docs: Fix incorrect property description (#1429) This text is a mistake. `aroundRadius` is not for IP address searches only. Copied the text from [here](https://www.algolia.com/doc/api-reference/api-parameters/aroundRadius/). --- packages/client-search/src/types/SearchOptions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client-search/src/types/SearchOptions.ts b/packages/client-search/src/types/SearchOptions.ts index 3f9c690af..c6c184b4a 100644 --- a/packages/client-search/src/types/SearchOptions.ts +++ b/packages/client-search/src/types/SearchOptions.ts @@ -273,7 +273,7 @@ export type SearchOptions = { readonly aroundLatLngViaIP?: boolean; /** - * Search for entries around a given location automatically computed from the requester’s IP address. + * Define the maximum radius for a geo search (in meters). */ readonly aroundRadius?: number | 'all';