diff --git a/core/src/main/java/com/datastrato/gravitino/config/ConfigEntry.java b/core/src/main/java/com/datastrato/gravitino/config/ConfigEntry.java index 3892f044c4b..09413d158a9 100644 --- a/core/src/main/java/com/datastrato/gravitino/config/ConfigEntry.java +++ b/core/src/main/java/com/datastrato/gravitino/config/ConfigEntry.java @@ -140,7 +140,7 @@ public ConfigEntry checkValue(Function checkValueFunc, String err * Split the string to a list, then map each string element to its converted form. * * @param str The string form of the value list from the conf entry. - * @param converter The orignal ConfigEntry valueConverter. + * @param converter The original ConfigEntry valueConverter. * @return The list of converted type. */ public List strToSeq(String str, Function converter) { @@ -154,7 +154,7 @@ public List strToSeq(String str, Function converter) { * Reduce the values then join them as a string. * * @param seq The sequence of the value list from the conf entry. - * @param converter The orignal ConfigEntry stringConverter. + * @param converter The original ConfigEntry stringConverter. * @return The converted string. */ public String seqToStr(List seq, Function converter) {