From b554835053b0b2653ac34a8fdb923fd197ede724 Mon Sep 17 00:00:00 2001 From: Roc Marshal <64569824+RocMarshal@users.noreply.github.com> Date: Sun, 11 Apr 2021 10:31:07 +0800 Subject: [PATCH] [MINOR] fix typo. (#2804) --- .../main/java/org/apache/hudi/common/util/ReflectionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hudi-common/src/main/java/org/apache/hudi/common/util/ReflectionUtils.java b/hudi-common/src/main/java/org/apache/hudi/common/util/ReflectionUtils.java index 22bec2e63..57d11d0b2 100644 --- a/hudi-common/src/main/java/org/apache/hudi/common/util/ReflectionUtils.java +++ b/hudi-common/src/main/java/org/apache/hudi/common/util/ReflectionUtils.java @@ -81,7 +81,7 @@ public class ReflectionUtils { } /** - * Creates an instnace of the given class. Use this version when dealing with interface types as constructor args. + * Creates an instance of the given class. Use this version when dealing with interface types as constructor args. */ public static Object loadClass(String clazz, Class[] constructorArgTypes, Object... constructorArgs) { try {