Skip to content

Commit

Permalink
Fix typo in constructor comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shadromani committed Jan 17, 2024
1 parent ab5eea1 commit 4ee28d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/maxmind/geoip2/model/CityResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
public final class CityResponse extends AbstractCityResponse {
/**
* Constructs and instance of {@code CityResponse} with the specified parameters.
* Constructs an instance of {@code CityResponse} with the specified parameters.
*
* @param city city
* @param continent continent
Expand Down Expand Up @@ -61,7 +61,7 @@ public CityResponse(
}

/**
* Constructs and instance of {@code CityResponse} with the specified parameters.
* Constructs an instance of {@code CityResponse} with the specified parameters.
*
* @param response the response
* @param ipAddress the IP address that the data in the model is for.
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/maxmind/geoip2/model/CountryResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public final class CountryResponse extends AbstractCountryResponse {

/**
* Constructs and instance of {@code CountryResponse} with the specified parameters.
* Constructs an instance of {@code CountryResponse} with the specified parameters.
*
* @param continent the continent
* @param country the country
Expand All @@ -47,7 +47,7 @@ public CountryResponse(
}

/**
* Constructs and instance of {@code CountryResponse} with the specified parameters.
* Constructs an instance of {@code CountryResponse} with the specified parameters.
*
* @param response the response
* @param ipAddress the IP address that the data in the model is for.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public final class EnterpriseResponse extends AbstractCityResponse {

/**
* Constructs and instance of EnterpriseResponse with the specified parameters.
* Constructs an instance of {@code EnterpriseResponse} with the specified parameters.
*
* @param city city
* @param continent continent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
public class InsightsResponse extends AbstractCityResponse {
/**
* Constructs and instance of {@code InsightsResponse} with the specified parameters.
* Constructs an instance of {@code InsightsResponse} with the specified parameters.
*
* @param city city
* @param continent continent
Expand Down

0 comments on commit 4ee28d7

Please sign in to comment.