Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {

## Usage ##

*Note:* For accessing MaxMind GeoIP2 databases, we generally recommend using
*Note:* For accessing MaxMind GeoIP databases, we generally recommend using
the [GeoIP2 Java API](https://maxmind.github.io/GeoIP2-java/) rather than using
this package directly.

Expand Down
8 changes: 4 additions & 4 deletions src/main/java/com/maxmind/db/Reader.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public enum FileMode {

/**
* Constructs a Reader for the MaxMind DB format, with no caching. The file
* passed to it must be a valid MaxMind DB file such as a GeoIP2 database
* passed to it must be a valid MaxMind DB file such as a GeoIP database
* file.
*
* @param database the MaxMind DB file to use.
Expand All @@ -73,7 +73,7 @@ public Reader(File database) throws IOException {
/**
* Constructs a Reader for the MaxMind DB format, with the specified backing
* cache. The file passed to it must be a valid MaxMind DB file such as a
* GeoIP2 database file.
* GeoIP database file.
*
* @param database the MaxMind DB file to use.
* @param cache backing cache instance
Expand Down Expand Up @@ -124,7 +124,7 @@ public Reader(InputStream source, NodeCache cache) throws IOException {

/**
* Constructs a Reader for the MaxMind DB format, with no caching. The file
* passed to it must be a valid MaxMind DB file such as a GeoIP2 database
* passed to it must be a valid MaxMind DB file such as a GeoIP database
* file.
*
* @param database the MaxMind DB file to use.
Expand All @@ -138,7 +138,7 @@ public Reader(File database, FileMode fileMode) throws IOException {
/**
* Constructs a Reader for the MaxMind DB format, with the specified backing
* cache. The file passed to it must be a valid MaxMind DB file such as a
* GeoIP2 database file.
* GeoIP database file.
*
* @param database the MaxMind DB file to use.
* @param fileMode the mode to open the file with.
Expand Down
Loading