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:51 UTC

[incubator-iotdb] branch quick_start_typo created (now 1c6a425)

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

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


      at 1c6a425  Fix typo in quick start

This branch includes the following new commits:

     new 1c6a425  Fix typo in quick start

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by su...@apache.org.
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: