You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vi...@apache.org on 2021/10/15 20:26:30 UTC

[hudi] branch master updated: [MINOR] fix typo, 'seprarated' corrected to 'separated' (#3789)

This is an automated email from the ASF dual-hosted git repository.

vinoth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 9aa7cfb  [MINOR] fix typo,'seprarated' corrected to 'separated' (#3789)
9aa7cfb is described below

commit 9aa7cfb80224629573c6d02c576858fe9afb1afa
Author: Jimmy.Zhou <zh...@inspur.com>
AuthorDate: Sat Oct 16 04:26:16 2021 +0800

    [MINOR] fix typo,'seprarated' corrected to 'separated' (#3789)
---
 .../main/java/org/apache/hudi/connect/utils/KafkaConnectUtils.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hudi-kafka-connect/src/main/java/org/apache/hudi/connect/utils/KafkaConnectUtils.java b/hudi-kafka-connect/src/main/java/org/apache/hudi/connect/utils/KafkaConnectUtils.java
index 34a44c8..70cfa95 100644
--- a/hudi-kafka-connect/src/main/java/org/apache/hudi/connect/utils/KafkaConnectUtils.java
+++ b/hudi-kafka-connect/src/main/java/org/apache/hudi/connect/utils/KafkaConnectUtils.java
@@ -87,7 +87,7 @@ public class KafkaConnectUtils {
   /**
    * Extract the record fields.
    * @param keyGenerator key generator Instance of the keygenerator.
-   * @return Returns the record key columns seprarated by comma.
+   * @return Returns the record key columns separated by comma.
    */
   public static String getRecordKeyColumns(KeyGenerator keyGenerator) {
     return String.join(",", keyGenerator.getRecordKeyFieldNames());
@@ -99,7 +99,7 @@ public class KafkaConnectUtils {
    *
    * @param keyGenerator key generator Instance of the keygenerator.
    * @param typedProperties properties from the config.
-   * @return partition columns Returns the partition columns seprarated by comma.
+   * @return partition columns Returns the partition columns separated by comma.
    */
   public static String getPartitionColumns(KeyGenerator keyGenerator, TypedProperties typedProperties) {