From e9bf0fb0ff4bb0af9feb2736314ab0e0ececa629 Mon Sep 17 00:00:00 2001 From: Congxian Qiu Date: Wed, 22 Jul 2020 11:27:45 +0800 Subject: [PATCH] [hotfix][docs] Fix hypelink typo in connect.md and connect.zh.md This closes #12936 --- docs/dev/table/connect.md | 2 +- docs/dev/table/connect.zh.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/dev/table/connect.md b/docs/dev/table/connect.md index 7aa151bf7de1e..1fe7c129708ae 100644 --- a/docs/dev/table/connect.md +++ b/docs/dev/table/connect.md @@ -140,7 +140,7 @@ schema: ... The table's type (`source`, `sink`, or `both`) determines how a table is registered. In case of table type `both`, both a table source and table sink are registered under the same name. Logically, this means that we can both read and write to such a table similarly to a table in a regular DBMS. -For streaming queries, an [update mode](connect.html#update-mode) declares how to communicate between a dynamic table and the storage system for continuous queries. The connector might already provide a default update mode, e.g. Kafka connector works in append mode by default. +For streaming queries, an [update mode](connect.html#update-modes) declares how to communicate between a dynamic table and the storage system for continuous queries. The connector might already provide a default update mode, e.g. Kafka connector works in append mode by default. The following code shows a full example of how to connect to Kafka for reading Json records. diff --git a/docs/dev/table/connect.zh.md b/docs/dev/table/connect.zh.md index 622e04f21ab47..c42971b9de4cb 100644 --- a/docs/dev/table/connect.zh.md +++ b/docs/dev/table/connect.zh.md @@ -140,7 +140,7 @@ schema: ... The table's type (`source`, `sink`, or `both`) determines how a table is registered. In case of table type `both`, both a table source and table sink are registered under the same name. Logically, this means that we can both read and write to such a table similarly to a table in a regular DBMS. -For streaming queries, an [update mode](connect.html#update-mode) declares how to communicate between a dynamic table and the storage system for continuous queries. The connector might already provide a default update mode, e.g. Kafka connector works in append mode by default. +For streaming queries, an [update mode](connect.html#update-modes) declares how to communicate between a dynamic table and the storage system for continuous queries. The connector might already provide a default update mode, e.g. Kafka connector works in append mode by default. The following code shows a full example of how to connect to Kafka for reading Json records.