@@ -42,7 +42,7 @@ Optional<CityResponse> tryCity(InetAddress ipAddress) throws IOException,
4242 * Look up an IP address in a GeoIP Anonymous IP.
4343 *
4444 * @param ipAddress IPv4 or IPv6 address to lookup.
45- * @return a AnonymousIpResponse for the requested IP address.
45+ * @return an AnonymousIpResponse for the requested IP address.
4646 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
4747 * @throws java.io.IOException if there is an IO error
4848 */
@@ -53,7 +53,7 @@ AnonymousIpResponse anonymousIp(InetAddress ipAddress) throws IOException,
5353 * Look up an IP address in a GeoIP Anonymous IP.
5454 *
5555 * @param ipAddress IPv4 or IPv6 address to lookup.
56- * @return a AnonymousIpResponse for the requested IP address or empty if it is not in the DB.
56+ * @return an AnonymousIpResponse for the requested IP address or empty if it is not in the DB.
5757 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
5858 * @throws java.io.IOException if there is an IO error
5959 */
@@ -64,7 +64,7 @@ Optional<AnonymousIpResponse> tryAnonymousIp(InetAddress ipAddress) throws IOExc
6464 * Look up an IP address in a GeoIP Anonymous Plus.
6565 *
6666 * @param ipAddress IPv4 or IPv6 address to lookup.
67- * @return a AnonymousPlusResponse for the requested IP address.
67+ * @return an AnonymousPlusResponse for the requested IP address.
6868 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
6969 * @throws java.io.IOException if there is an IO error
7070 */
@@ -75,7 +75,8 @@ AnonymousPlusResponse anonymousPlus(InetAddress ipAddress) throws IOException,
7575 * Look up an IP address in a GeoIP Anonymous Plus.
7676 *
7777 * @param ipAddress IPv4 or IPv6 address to lookup.
78- * @return a AnonymousPlusResponse for the requested IP address or empty if it is not in the DB.
78+ * @return an AnonymousPlusResponse for the requested IP address or empty if it
79+ * is not in the DB.
7980 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
8081 * @throws java.io.IOException if there is an IO error
8182 */
@@ -97,7 +98,7 @@ IpRiskResponse ipRisk(InetAddress ipAddress) throws IOException,
9798 * Look up an IP address in a GeoIP IP Risk database.
9899 *
99100 * @param ipAddress IPv4 or IPv6 address to lookup.
100- * @return an IPRiskResponse for the requested IP address or empty if it is not in the DB.
101+ * @return an IpRiskResponse for the requested IP address or empty if it is not in the DB.
101102 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
102103 * @throws java.io.IOException if there is an IO error
103104 */
@@ -108,7 +109,7 @@ Optional<IpRiskResponse> tryIpRisk(InetAddress ipAddress) throws IOException,
108109 * Look up an IP address in a GeoLite ASN database.
109110 *
110111 * @param ipAddress IPv4 or IPv6 address to lookup.
111- * @return an IspResponse for the requested IP address.
112+ * @return an AsnResponse for the requested IP address.
112113 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
113114 * @throws java.io.IOException if there is an IO error
114115 */
@@ -119,7 +120,7 @@ AsnResponse asn(InetAddress ipAddress) throws IOException,
119120 * Look up an IP address in a GeoLite ASN database.
120121 *
121122 * @param ipAddress IPv4 or IPv6 address to lookup.
122- * @return an IspResponse for the requested IP address or empty if it is not in the DB.
123+ * @return an AsnResponse for the requested IP address or empty if it is not in the DB.
123124 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
124125 * @throws java.io.IOException if there is an IO error
125126 */
@@ -130,7 +131,7 @@ Optional<AsnResponse> tryAsn(InetAddress ipAddress) throws IOException,
130131 * Look up an IP address in a GeoIP Connection Type database.
131132 *
132133 * @param ipAddress IPv4 or IPv6 address to lookup.
133- * @return a ConnectTypeResponse for the requested IP address.
134+ * @return a ConnectionTypeResponse for the requested IP address.
134135 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
135136 * @throws java.io.IOException if there is an IO error
136137 */
@@ -141,7 +142,8 @@ ConnectionTypeResponse connectionType(InetAddress ipAddress)
141142 * Look up an IP address in a GeoIP Connection Type database.
142143 *
143144 * @param ipAddress IPv4 or IPv6 address to lookup.
144- * @return a ConnectTypeResponse for the requested IP address or empty if it is not in the DB.
145+ * @return a ConnectionTypeResponse for the requested IP address or empty if it
146+ * is not in the DB.
145147 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
146148 * @throws java.io.IOException if there is an IO error
147149 */
@@ -206,8 +208,8 @@ IspResponse isp(InetAddress ipAddress) throws IOException,
206208 /**
207209 * Look up an IP address in a GeoIP ISP database.
208210 *
209- * @param ipAddress IPv4 or IPv6 address to look up or empty if it is not in the DB .
210- * @return an IspResponse for the requested IP address.
211+ * @param ipAddress IPv4 or IPv6 address to look up.
212+ * @return an IspResponse for the requested IP address or empty if it is not in the DB .
211213 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
212214 * @throws java.io.IOException if there is an IO error
213215 */
0 commit comments