This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new fb351c3 Fix typo in quick start (#1003)
fb351c3 is described below
commit fb351c37f26c503efb96bc825b38d461e22eee33
Author: Zesong Sun <[email protected]>
AuthorDate: Wed Apr 8 09:04:32 2020 +0800
Fix typo in quick start (#1003)
---
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: