You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by su...@apache.org on 2020/04/07 15:49:52 UTC

[incubator-iotdb] 01/01: Fix typo in quick start

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

sunzesong pushed a commit to branch quick_start_typo
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit 1c6a4258678739cbe39d59c096d9a6604d3c1c90
Author: samperson1997 <sz...@mails.tsinghua.edu.cn>
AuthorDate: Tue Apr 7 23:48:55 2020 +0800

    Fix typo in quick start
---
 docs/UserGuide/0-Get Started/1-QuickStart.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/UserGuide/0-Get Started/1-QuickStart.md b/docs/UserGuide/0-Get Started/1-QuickStart.md
index af53929..89a1b02 100755
--- a/docs/UserGuide/0-Get Started/1-QuickStart.md	
+++ b/docs/UserGuide/0-Get Started/1-QuickStart.md	
@@ -53,7 +53,7 @@ To use IoTDB, you need to have:
 IoTDB provides you three installation methods, you can refer to the following suggestions, choose one of them:
 
 * Installation from source code. If you need to modify the code yourself, you can use this method.
-* Installation from binary files. Download the binary files from the official website. This is the recommended method, in which you will get a binary released package which is out-of-the-box.(Comming Soon...)
+* Installation from binary files. Download the binary files from the official website. This is the recommended method, in which you will get a binary released package which is out-of-the-box.(Coming Soon...)
 * Using Docker:The path to the dockerfile is https://github.com/apache/incubator-iotdb/blob/master/docker/src/main
 
 
@@ -137,7 +137,7 @@ IoTDB>
 
 Now, let us introduce the way of creating timeseries, inserting data and querying data. 
 
-The data in IoTDB is organized as timeseries, in each timeseries there are some data-time pairs, and every timeseries is owned by a storage group. Before defining a timeseries, we should difine a storage group using SET STORAGE GROUP, and here is an example: 
+The data in IoTDB is organized as timeseries, in each timeseries there are some data-time pairs, and every timeseries is owned by a storage group. Before defining a timeseries, we should define a storage group using SET STORAGE GROUP, and here is an example: 
 
 ``` 
 IoTDB> SET STORAGE GROUP TO root.ln
@@ -162,7 +162,7 @@ IoTDB> CREATE TIMESERIES root.ln.wf01.wt01.status WITH DATATYPE=BOOLEAN, ENCODIN
 IoTDB> CREATE TIMESERIES root.ln.wf01.wt01.temperature WITH DATATYPE=FLOAT, ENCODING=RLE
 ```
 
-In order to query the specific timeseries, we can use SHOW TIMESERIES \<Path\>. \<Path\> represent the path of the timeseries. Its default value is null, which means quering all the timeseries in the system(the same as using "SHOW TIMESERIES root"). Here are the examples:
+In order to query the specific timeseries, we can use SHOW TIMESERIES \<Path\>. \<Path\> represent the path of the timeseries. Its default value is null, which means querying all the timeseries in the system(the same as using "SHOW TIMESERIES root"). Here are the examples:
 
 1. Querying all timeseries in the system: