You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by zo...@apache.org on 2022/10/05 14:43:14 UTC

[incubator-seatunnel-website] branch main updated: [Doc][V1] fix 2.1.1 Fake.mdx (#122)

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

zongwen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new f0a2c677ed [Doc][V1] fix 2.1.1 Fake.mdx (#122)
f0a2c677ed is described below

commit f0a2c677edf05a49ec10145e39b7ae75650c7594
Author: Bill Xu <fo...@users.noreply.github.com>
AuthorDate: Wed Oct 5 22:30:50 2022 +0800

    [Doc][V1] fix 2.1.1 Fake.mdx (#122)
    
    List should have ended with ] or had a comma, instead had token: '=' (if you want '=' to be part of a string value, then double-quote it)
---
 versioned_docs/version-2.1.1/connector/source/Fake.mdx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/versioned_docs/version-2.1.1/connector/source/Fake.mdx b/versioned_docs/version-2.1.1/connector/source/Fake.mdx
index 0c6a45de3e..030a1786c0 100644
--- a/versioned_docs/version-2.1.1/connector/source/Fake.mdx
+++ b/versioned_docs/version-2.1.1/connector/source/Fake.mdx
@@ -90,7 +90,7 @@ Fake {
 
 ```bash
 fakeStream {
-    content = ['name=ricky&age=23', 'name=gary&age=28']
+    content = ["name=ricky&age=23", "name=gary&age=28"]
     rate = 5
 }
 ```