From e04e5f732cef3c11f7bcfa4a52f60e20d75fc097 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 14 Jun 2024 10:25:26 +0900 Subject: [PATCH] [MINOR] improvement: Fix the typo in ConfigEntry.java (#3860) ### What changes were proposed in this pull request? orignal -> original --- .../java/com/datastrato/gravitino/config/ConfigEntry.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {