Skip to content

Commit

Permalink
fix readme typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alagram committed Jul 17, 2020
1 parent 130ac22 commit ca157ce
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 ca157ce

Please sign in to comment.