You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/08/10 01:47:51 UTC

[incubator-seatunnel] branch dev updated: [typo][SinkWriter] Use 'data', not 'date'. (#2388)

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

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new a03940729 [typo][SinkWriter] Use 'data', not 'date'. (#2388)
a03940729 is described below

commit a0394072975c92008c17f3d011174e16a097682b
Author: tiezhu <35...@users.noreply.github.com>
AuthorDate: Wed Aug 10 09:47:45 2022 +0800

    [typo][SinkWriter] Use 'data', not 'date'. (#2388)
---
 .../src/main/java/org/apache/seatunnel/api/sink/SinkWriter.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/seatunnel-api/src/main/java/org/apache/seatunnel/api/sink/SinkWriter.java b/seatunnel-api/src/main/java/org/apache/seatunnel/api/sink/SinkWriter.java
index 897e64b4c..ceadc5760 100644
--- a/seatunnel-api/src/main/java/org/apache/seatunnel/api/sink/SinkWriter.java
+++ b/seatunnel-api/src/main/java/org/apache/seatunnel/api/sink/SinkWriter.java
@@ -36,7 +36,7 @@ public interface SinkWriter<T, CommitInfoT, StateT> extends Serializable {
     /**
      * write data to third party data receiver.
      *
-     * @param element the date need be written.
+     * @param element the data need be written.
      * @throws IOException throw IOException when write data failed.
      */
     void write(T element) throws IOException;