diff --git a/quarkus-table-generator/src/main/java/ch/phoenix/oss/quarkus/commons/table/TableGenerator.java b/quarkus-table-generator/src/main/java/ch/phoenix/oss/quarkus/commons/table/TableGenerator.java index 97c6e8d..3a30730 100644 --- a/quarkus-table-generator/src/main/java/ch/phoenix/oss/quarkus/commons/table/TableGenerator.java +++ b/quarkus-table-generator/src/main/java/ch/phoenix/oss/quarkus/commons/table/TableGenerator.java @@ -13,7 +13,7 @@ public interface TableGenerator { * If null, field names are used as headers. * @return String representing the records as a table in Jira notation * @throws IllegalArgumentException If records are null or empty, if the type is not a Record. - * Also throws if customer headers are provided but the size does not match the record's field count + * Also throws if custom headers are provided but the size does not match the record's field count * @throws IllegalStateException if an error occurs while invoking a record's accessor */ String generateJiraTable(List records, List headers);