diff --git a/docs/nGQL.md b/docs/nGQL.md
index dbba710e862..55412013817 100644
--- a/docs/nGQL.md
+++ b/docs/nGQL.md
@@ -1,7 +1,7 @@
# Nebula Graph Query Language (nGQL)
## About nGQL
-`NGQL` is a declarative, textual query language like SQL, but for graphs. Unlike SQL, nGQL is all about expressing graph patterns. NGQL is a work in progress. We will add more features and further simplify the existing ones.
+`nGQL` is a declarative, textual query language like SQL, but for graphs. Unlike SQL, nGQL is all about expressing graph patterns. nGQL is a work in progress. We will add more features and further simplify the existing ones. There might be inconsistency between the syntax specs and implementation for the time being.
## Goals
- Easy to learn
- Easy to understand
@@ -98,7 +98,7 @@
#### Choose a graph space
Nebula supports multiple graph spaces. Data in different graph spaces are physically isolated. Before executing a query, a graph space needs to be selected using the following statement
-**USE **
+**USE**
#### Return a data set
Simply return a single value or a data set
@@ -107,22 +107,22 @@ Simply return a single value or a data set
::= **vid** | | |
-#### Define a tag
+#### Create a tag
The following statement defines a **new** tag
-**DEFINE TAG** ()
+**CREATE TAG** ()
- ::=