This is an automated email from the ASF dual-hosted git repository.
etudenhoefner 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 c6d9b92110 Docs: Add missing ; in Flink examples (#7908)
c6d9b92110 is described below
commit c6d9b92110144a569a6218a0be94bfc930238701
Author: littlecatjianjiao <[email protected]>
AuthorDate: Sun Jun 25 16:01:34 2023 +0800
Docs: Add missing ; in Flink examples (#7908)
---
docs/flink-queries.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/flink-queries.md b/docs/flink-queries.md
index 24ff608a14..95c4fcf981 100644
--- a/docs/flink-queries.md
+++ b/docs/flink-queries.md
@@ -195,7 +195,7 @@ IcebergSource source = IcebergSource.forRowData()
.streaming(true)
.streamingStartingStrategy(StreamingStartingStrategy.INCREMENTAL_FROM_LATEST_SNAPSHOT)
.monitorInterval(Duration.ofSeconds(60))
- .build()
+ .build();
DataStream<RowData> stream = env.fromSource(
source,