From 50d9d9dd3bd77aa044b45ce5db6a2b7d0fcb23d6 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 21 Aug 2023 22:46:51 +0900 Subject: [PATCH] [search] fix typo in reverse_geocoder.cpp analize -> analyze Signed-off-by: Ikko Eltociear Ashimine --- search/reverse_geocoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/reverse_geocoder.cpp b/search/reverse_geocoder.cpp index 62809ff17b..54d06d7643 100644 --- a/search/reverse_geocoder.cpp +++ b/search/reverse_geocoder.cpp @@ -246,7 +246,7 @@ void ReverseGeocoder::GetNearbyAddress(m2::PointD const & center, double maxDist for (auto const & b : buildings) { - // It's quite enough to analize nearest kMaxNumTriesToApproxAddress houses for the exact nearby address. + // It's quite enough to analyze nearest kMaxNumTriesToApproxAddress houses for the exact nearby address. // When we can't guarantee suitable address for the point with distant houses. if (GetNearbyAddress(table, b, false /* ignoreEdits */, addr) || (++triesCount == kMaxNumTriesToApproxAddress))