From ca157ce36985bbc0efb91aeb02bb8240e61d2fda Mon Sep 17 00:00:00 2001 From: Albert Agram Date: Fri, 17 Jul 2020 16:45:30 -0400 Subject: [PATCH] fix readme typos --- README.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.markdown b/README.markdown index 87c16b9f..81f39e6e 100644 --- a/README.markdown +++ b/README.markdown @@ -285,7 +285,7 @@ Multi Geocoder - provides failover for the physical location geocoders, and also ``` ## MULTIPLE RESULTS -Some geocoding services will return multple results if the there isn't one clear result. +Some geocoding services will return multiple results if the there isn't one clear result. Geoloc can capture multiple results through its "all" method. ```ruby @@ -313,14 +313,14 @@ between two points. LatLng is a simple container for latitude and longitude, but it's made more powerful by mixing in the above-mentioned Mappable module -- therefore, you can calculate easily the distance between two -LatLng ojbects with `distance = first.distance_to(other)` +LatLng objects with `distance = first.distance_to(other)` GeoLoc represents an address or location which has been geocoded. You can get the city, zipcode, street address, etc. from a GeoLoc object. GeoLoc extends LatLng, so you also get lat/lng AND the Mappable module goodness for free. -geocoders.rb contains all the geocoder implemenations. All the gercoders +geocoders.rb contains all the geocoder implementations. All the geocoders inherit from a common base (class Geocoder) and implement the private method do_geocode.