diff --git a/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md b/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md index 4a8c3fdf159..01657d6a9bd 100644 --- a/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md +++ b/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md @@ -13,7 +13,7 @@ GO [[ TO] STEPS ] FROM OVER [{REVERSELY | BIDIRECT}] [ WHERE  ] YIELD [DISTINCT] -[{SAMPLE | LIMIT }] +[{SAMPLE | }] [| GROUP BY {col_name | expr | position} YIELD ] [| ORDER BY [{ASC | DESC}]] [| LIMIT [,] ]; @@ -53,7 +53,7 @@ YIELD [DISTINCT] - `SAMPLE `: takes samples from the result set. For more information, see [SAMPLE](../8.clauses-and-options/sample.md). -- `LIMIT `: limits the number of outputs during the traversal process. For more information, see [LIMIT](../8.clauses-and-options/limit.md). +- ``: limits the number of outputs during the traversal process. For more information, see [LIMIT](../8.clauses-and-options/limit.md). - `GROUP BY`: groups the output into subgroups based on the value of the specified property. For more information, see [GROUP BY](../8.clauses-and-options/group-by.md). After grouping, you need to use `YIELD` again to define the output that needs to be returned.