Skip to content

Commit 22151bd

Browse files
authored
Merge pull request #1 from deltwalrus/deltwalrus-patch-1
Update README.md
2 parents 3f857b5 + d8af6bd commit 22151bd

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
[![License](http://img.shields.io/:license-apache-blue.svg)](LICENSE)
44

5-
This is the official Java client library for the [IPinfo.io](https://ipinfo.io) IP address API, allowing you to lookup your own IP address, or get any of the following details for an IP:
5+
This is the official Java client library for the [IPinfo.io](https://ipinfo.io) IP address API, allowing you to look up your own IP address, or get any of the following details for an IP:
66

7-
- [IP geolocation data](https://ipinfo.io/ip-geolocation-api) (city, region, country, postal code, latitude and longitude)
8-
- [ASN information](https://ipinfo.io/asn-api) (ISP or network operator, associated domain name, and type, such as business, hosting or company)
7+
- [IP geolocation data](https://ipinfo.io/ip-geolocation-api) (city, region, country, postal code, latitude, and longitude)
8+
- [ASN information](https://ipinfo.io/asn-api) (ISP or network operator, associated domain name, and type, such as business, hosting, or company)
99
- [Company data](https://ipinfo.io/ip-company-api) (the name and domain of the business that uses the IP address)
1010
- [Carrier details](https://ipinfo.io/ip-carrier-api) (the name of the mobile carrier and MNC and MCC for that carrier if the IP is used exclusively for mobile traffic)
1111

@@ -96,12 +96,12 @@ public class Main {
9696
`ExecutionException` of a future. This exception signals that something went
9797
wrong when mapping the API response to the wrapper. You probably can't
9898
recover from this exception.
99-
- `RateLimitedException` An exception signalling that you've been rate limited.
99+
- `RateLimitedException` An exception signaling that you've been rate limited.
100100

101101
#### Caching
102102

103103
This library provides a very simple caching system accessible in `SimpleCache`.
104-
Simple cache is an in memory caching system that resets every time you restart
104+
Simple cache is an in-memory caching system that resets every time you restart
105105
your code.
106106

107107
If you prefer a different caching methodology, you may use the `Cache`
@@ -209,7 +209,7 @@ public class Main {
209209

210210
#### Internationalization
211211

212-
This library provides a system to lookup if a country is a member of the European Union (EU), emoji and unicode of country's flag, code and symbol of country's currency, public link to the country's flag image as an SVG and continent code and name through ISO2 country codes.
212+
This library provides a system to lookup if a country is a member of the European Union (EU), emoji and unicode of the country's flag, code and symbol of the country's currency, and public link to the country's flag image as an SVG and continent code and name through ISO2 country codes.
213213

214214
Following are the file that are loaded by default:
215215
- [eu.json](https://github.com/ipinfo/java-ipinfo/blob/master/src/main/resources/eu.json)
@@ -258,7 +258,7 @@ public class Main {
258258
}
259259
```
260260

261-
The files must follow the same layout as seen
261+
The files must follow the same layout as seen at:
262262
- [eu.json](https://github.com/ipinfo/java-ipinfo/blob/master/src/main/resources/eu.json)
263263
- [flags.json](https://github.com/ipinfo/java-ipinfo/blob/master/src/main/resources/flags.json)
264264
- [currency.json](https://github.com/ipinfo/java-ipinfo/blob/master/src/main/resources/currency.json)
@@ -296,14 +296,14 @@ public class Main {
296296

297297
#### Extra Information
298298

299-
- This library is thread safe. Feel free to call the different endpoints from
299+
- This library is thread-safe. Feel free to call the different endpoints from
300300
different threads.
301-
- This library uses square's http client. Please refer to their documentation
301+
- This library uses Square's http client. Please refer to their documentation
302302
to get information on more functionality you can use.
303303

304304
### Other Libraries
305305

306-
There are official [IPinfo client libraries](https://ipinfo.io/developers/libraries) available for many languages including PHP, Python, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.
306+
There are official [IPinfo client libraries](https://ipinfo.io/developers/libraries) available for many languages including PHP, Python, Go, Java, Ruby, and many popular frameworks such as Django, Rails, and Laravel. There are also many third-party libraries and integrations available for our API.
307307

308308
### About IPinfo
309309

0 commit comments

Comments
 (0)