Skip to content

Commit

Permalink
fixed miss-spelling in README
Browse files Browse the repository at this point in the history
  • Loading branch information
kuno committed Nov 27, 2010
1 parent d9915cb commit a860235
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -2,15 +2,17 @@

###Description

Get geolocation information based on domain or IP address
Get geolocation information based on domain or IP address.

###Data

Befor you can use this package, you need to download or buy some data from [www.maxmind.com](http://www.maxmind.com/app/ip-location).

There are two free versions data among with some commercial versions.
[GeoIP Country Lite Edition](http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz).
[GeoIP City Lite Edition](http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz)

GeoIP Country Lite Edition [Download](http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz).

GeoIP City Lite Edition [Download](http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz)

###Install

Expand Down Expand Up @@ -41,7 +43,7 @@ There are two free versions data among with some commercial versions.
if (err) {throw err;}
console.log(name); // prints 'United States'
});
* set the all properties of an exsiting data object to undefined.
* Set all properties of an existing data object to undefined.
geoip.close(data);

####City Information
Expand Down
2 changes: 1 addition & 1 deletion sample/sample.js
Expand Up @@ -23,7 +23,7 @@ geoip.Country.name_by_domain(data, 'www.google.com', function(err, name) {
console.log(name); // prints 'United States'
});

// Set the all properties of an existing data object to undefined
// Set all properties of an existing data object to undefined
geoip.close(data);
/*
* City geo infomation
Expand Down

0 comments on commit a860235

Please sign in to comment.