class Pumi::DataSource::Geocoder::AbstractGeocoder

def build_search_term(location)

def build_search_term(location)
  [location.full_name_km, location.name_km].map do |term|
    MISSPELLINGS.find { |m| m.correct_text == term }&.incorrect_text || term
  end
end