You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2021/12/12 18:50:11 UTC

[iceberg] branch master updated: Docs: Fix label for Flink streaming example (#3680)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d994549  Docs: Fix label for Flink streaming example (#3680)
d994549 is described below

commit d994549cb3f612eaeb4273331f493783ab1c73c9
Author: wuwenchi <wu...@hotmail.com>
AuthorDate: Mon Dec 13 02:50:01 2021 +0800

    Docs: Fix label for Flink streaming example (#3680)
    
    Co-authored-by: 吴文池 <wu...@deepexi.com>
---
 site/docs/flink.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/docs/flink.md b/site/docs/flink.md
index 6597cfc..99beded 100644
--- a/site/docs/flink.md
+++ b/site/docs/flink.md
@@ -473,7 +473,7 @@ DataStream<RowData> stream = FlinkSource.forRowData()
 stream.print();
 
 // Submit and execute this streaming read job.
-env.execute("Test Iceberg Batch Read");
+env.execute("Test Iceberg Streaming Read");
 ```
 
 There are other options that we could set by Java API, please see the [FlinkSource#Builder](./javadoc/{{ versions.iceberg }}/org/apache/iceberg/flink/source/FlinkSource.html).