Skip to content

Commit

Permalink
Merge pull request geokit#249 from alagram/readme_typos
Browse files Browse the repository at this point in the history
fix readme typos
  • Loading branch information
dsantosmerino authored Jul 26, 2021
2 parents 130ac22 + ca157ce commit b55c92b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down

0 comments on commit b55c92b

Please sign in to comment.