[search] fix typo in reverse_geocoder.cpp

analize -> analyze

Signed-off-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
This commit is contained in:
Ikko Eltociear Ashimine 2023-08-21 22:46:51 +09:00 committed by Alexander Borsuk
parent 0b89460767
commit 50d9d9dd3b

View file

@ -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))