From 1c55a879ecfb38903cfca9f3e89c6d60f766cfe3 Mon Sep 17 00:00:00 2001 From: hsldymq Date: Sat, 16 Jul 2022 10:49:07 +0800 Subject: [PATCH] [docs] Fix typo in mysql-cdc.md (#1364) --- docs/content/connectors/mysql-cdc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/connectors/mysql-cdc.md b/docs/content/connectors/mysql-cdc.md index 40359e399..5e9d2db6c 100644 --- a/docs/content/connectors/mysql-cdc.md +++ b/docs/content/connectors/mysql-cdc.md @@ -529,7 +529,7 @@ The following operations show how to enable this feature to resolve above scenar MySqlSource mySqlSource = MySqlSource.builder() .hostname("yourHostname") .port(yourPort) - .scanNewlyAddedTableEnabled(true) // eanbel scan the newly added tables fature + .scanNewlyAddedTableEnabled(true) // enable scan the newly added tables feature .databaseList("db") // set captured database .tableList("db.product, db.user, db.address") // set captured tables [product, user, address] .username("yourUsername")