diff --git a/src/main/java/codes/thischwa/cf/CfBasicHttpClient.java b/src/main/java/codes/thischwa/cf/CfBasicHttpClient.java index c6e61bc..8b260c8 100644 --- a/src/main/java/codes/thischwa/cf/CfBasicHttpClient.java +++ b/src/main/java/codes/thischwa/cf/CfBasicHttpClient.java @@ -142,10 +142,10 @@ abstract class CfBasicHttpClient { /** * Sends a PATCH request with a payload to the given endpoint and maps the response. * - * @param endpoint the API endpoint path - * @param requestPayload the payload to send - * @param responseType the expected response type class - * @param the response type extending AbstractResponse + * @param endpoint the API endpoint path + * @param requestPayload the payload to send + * @param responseType the expected response type class + * @param the response type extending AbstractResponse * @return the parsed response object * @throws CloudflareApiException if an error occurs during the request */ diff --git a/src/main/java/codes/thischwa/cf/CfDnsClient.java b/src/main/java/codes/thischwa/cf/CfDnsClient.java index 51c1d94..bb39306 100644 --- a/src/main/java/codes/thischwa/cf/CfDnsClient.java +++ b/src/main/java/codes/thischwa/cf/CfDnsClient.java @@ -118,7 +118,7 @@ public class CfDnsClient extends CfBasicHttpClient { * * @param records A list of {@link RecordEntity} objects to be grouped by FQDN. * @return A map where the key is the FQDN (name field) and the value is a list of {@link RecordEntity} - * objects that share that FQDN. + * objects that share that FQDN. */ public static Map> groupRecordsByFqdn(List records) { if (records == null) { diff --git a/src/main/java/codes/thischwa/cf/fluent/ZoneOperations.java b/src/main/java/codes/thischwa/cf/fluent/ZoneOperations.java index 7eebeed..5056351 100644 --- a/src/main/java/codes/thischwa/cf/fluent/ZoneOperations.java +++ b/src/main/java/codes/thischwa/cf/fluent/ZoneOperations.java @@ -28,6 +28,7 @@ public interface ZoneOperations { * @throws CloudflareApiException if the zone cannot be found or accessed */ RecordOperations record(String sld, @Nullable RecordType... types) throws CloudflareApiException; + /** * Lists all DNS records within the zone, optionally filtered by types. *