diff --git a/README.md b/README.md index ab728fe1..d383f40d 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/main/java/com/maxmind/db/Reader.java b/src/main/java/com/maxmind/db/Reader.java index 64165468..c1d16fef 100644 --- a/src/main/java/com/maxmind/db/Reader.java +++ b/src/main/java/com/maxmind/db/Reader.java @@ -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. @@ -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 @@ -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. @@ -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.