You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by dw...@apache.org on 2018/09/06 12:57:18 UTC

[flink] branch master updated: [hotfix][flink-connector-filesystem] fix javadoc typo in BucketingSink

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d393a71  [hotfix][flink-connector-filesystem] fix javadoc typo in BucketingSink
d393a71 is described below

commit d393a713adc87f73572a23389eef9cf25e8d644c
Author: maqingxiang <35...@users.noreply.github.com>
AuthorDate: Thu Sep 6 20:57:13 2018 +0800

    [hotfix][flink-connector-filesystem] fix javadoc typo in BucketingSink
---
 .../apache/flink/streaming/connectors/fs/bucketing/BucketingSink.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-connectors/flink-connector-filesystem/src/main/java/org/apache/flink/streaming/connectors/fs/bucketing/BucketingSink.java b/flink-connectors/flink-connector-filesystem/src/main/java/org/apache/flink/streaming/connectors/fs/bucketing/BucketingSink.java
index d563bcf..4f85e3c 100644
--- a/flink-connectors/flink-connector-filesystem/src/main/java/org/apache/flink/streaming/connectors/fs/bucketing/BucketingSink.java
+++ b/flink-connectors/flink-connector-filesystem/src/main/java/org/apache/flink/streaming/connectors/fs/bucketing/BucketingSink.java
@@ -1049,7 +1049,7 @@ public class BucketingSink<T>
 	}
 
 	/**
-	 * Sets the prefix of part files.  The default is no suffix.
+	 * Sets the suffix of part files.  The default is no suffix.
 	 */
 	public BucketingSink<T> setPartSuffix(String partSuffix) {
 		this.partSuffix = partSuffix;