From b3f10f45d2bd1792995c0ec1730c42e24e0cd93d Mon Sep 17 00:00:00 2001 From: Li Ya Qiang Date: Wed, 18 Jan 2023 06:29:37 +0800 Subject: [PATCH] fix the cmd and ps issue in data subscription --- docs/en/11-data-subscription/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en/11-data-subscription/index.md b/docs/en/11-data-subscription/index.md index d29c224c52..10705f4dae 100644 --- a/docs/en/11-data-subscription/index.md +++ b/docs/en/11-data-subscription/index.md @@ -164,14 +164,14 @@ export TDENGINE_CLOUD_TMQ="" ```shell -set TDENGINE_CLOUD_TMQ="" +set TDENGINE_CLOUD_TMQ= ``` ```shell -$env:TDENGINE_CLOUD_TMQ="" +$env:TDENGINE_CLOUD_TMQ='' ``` @@ -196,16 +196,16 @@ export TDENGINE_CLOUD_TOKEN="" ```shell -set TDENGINE_CLOUD_ENDPOINT="" -set TDENGINE_CLOUD_TOKEN="" +set TDENGINE_CLOUD_ENDPOINT= +set TDENGINE_CLOUD_TOKEN= ``` ```shell -$env:TDENGINE_CLOUD_ENDPOINT="" -$env:TDENGINE_CLOUD_TOKEN="" +$env:TDENGINE_CLOUD_ENDPOINT='' +$env:TDENGINE_CLOUD_TOKEN='' ``` -- GitLab