This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch DocTypo in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 94503e6e28a0a8e0de9b76a0f60166a287e03ff0 Author: JackieTien97 <[email protected]> AuthorDate: Thu May 4 19:05:17 2023 +0800 Fix typo in syntax conventions doc --- docs/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md | 4 ++-- docs/zh/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md b/docs/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md index 6d0c171facc..e70b6b7cea6 100644 --- a/docs/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md +++ b/docs/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md @@ -52,8 +52,8 @@ When you call the createTimeseries method, you should assign the path string as // timeseries root.sg.a String path = "root.sg.a"; -// timeseries root.sg.`a``"b` -String path = "root.sg.`a``\"b`"; +// timeseries root.sg.`a.``"b` +String path = "root.sg.`a.``\"b`"; // timeseries root.sg.`111` String path = "root.sg.`111`"; diff --git a/docs/zh/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md b/docs/zh/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md index d8428dedf64..42327c64348 100644 --- a/docs/zh/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md +++ b/docs/zh/UserGuide/Syntax-Conventions/Session-And-TsFile-API.md @@ -52,8 +52,8 @@ create timeseries root.sg.`111` with datatype=FLOAT,encoding=PLAIN,compressor=SN // 时间序列 root.sg.a String path = "root.sg.a"; -// 时间序列 root.sg.`a``"b` -String path = "root.sg.`a``\"b`"; +// 时间序列 root.sg.`a.``"b` +String path = "root.sg.`a.``\"b`"; // 时间序列 root.sg.`111` String path = "root.sg.`111`";
