You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2020/06/23 09:08:26 UTC

[flink] 02/05: [hotfix][table-common] Fix typo in EncodingFormatFactory

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

twalthr pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 954eef2dcb5ed2007c99316fea311b925dbda3e5
Author: Timo Walther <tw...@apache.org>
AuthorDate: Fri Jun 19 15:03:45 2020 +0200

    [hotfix][table-common] Fix typo in EncodingFormatFactory
---
 .../java/org/apache/flink/table/factories/EncodingFormatFactory.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/factories/EncodingFormatFactory.java b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/factories/EncodingFormatFactory.java
index 578a027..fa6b08c 100644
--- a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/factories/EncodingFormatFactory.java
+++ b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/factories/EncodingFormatFactory.java
@@ -25,7 +25,7 @@ import org.apache.flink.table.connector.format.Format;
 import org.apache.flink.table.connector.sink.DynamicTableSink;
 
 /**
- * Base interface for configuring a {@link EncodingFormat} for a {@link DynamicTableSink}.
+ * Base interface for configuring an {@link EncodingFormat} for a {@link DynamicTableSink}.
  *
  * <p>Depending on the kind of external system, a connector might support different encodings for
  * reading and writing rows. This interface helps in making such formats pluggable.