You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by bl...@apache.org on 2020/02/05 04:06:52 UTC

[flink] branch release-1.10 updated: [hotfix][docs] Fix missing double quotes in catalog docs

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

bli pushed a commit to branch release-1.10
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.10 by this push:
     new 92d130c  [hotfix][docs] Fix missing double quotes in catalog docs
92d130c is described below

commit 92d130c7cad8e76d6cf77906394bdba1a48434dd
Author: Tartarus <zh...@jd.com>
AuthorDate: Tue Feb 4 12:01:08 2020 +0800

    [hotfix][docs] Fix missing double quotes in catalog docs
    
    closes #11008
---
 docs/dev/table/catalogs.md    | 2 +-
 docs/dev/table/catalogs.zh.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/dev/table/catalogs.md b/docs/dev/table/catalogs.md
index 6fb2b47..876e808 100644
--- a/docs/dev/table/catalogs.md
+++ b/docs/dev/table/catalogs.md
@@ -134,7 +134,7 @@ catalog.createTable(
         )
     );
     
-List<String> tables = catalog.listTables("mydb); // tables should contain "mytable"
+List<String> tables = catalog.listTables("mydb"); // tables should contain "mytable"
 {% endhighlight %}
 </div>
 </div>
diff --git a/docs/dev/table/catalogs.zh.md b/docs/dev/table/catalogs.zh.md
index e07e840..1814f5c 100644
--- a/docs/dev/table/catalogs.zh.md
+++ b/docs/dev/table/catalogs.zh.md
@@ -134,7 +134,7 @@ catalog.createTable(
         )
     );
 
-List<String> tables = catalog.listTables("mydb); // tables should contain "mytable"
+List<String> tables = catalog.listTables("mydb"); // tables should contain "mytable"
 {% endhighlight %}
 
 </div>