Skip to content

Commit

Permalink
Fix a grammar issue (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
randomJoe211 authored Apr 2, 2022
1 parent 1e787c5 commit 79162c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ After a query is sent to the Graph Service, it will be processed by the followin

## Parser

After receiving a request, the statements will be parsed by Parser composed of Flex (lexical analysis tool) and Bison (syntax analysis tool), and its corresponding AST will be generated. Statements will be directly intercepted in this stage because of its invalid syntax.
After receiving a request, the statements will be parsed by Parser composed of Flex (lexical analysis tool) and Bison (syntax analysis tool), and its corresponding AST will be generated. Statements will be directly intercepted in this stage because of their invalid syntax.

For example, the structure of the AST of `GO FROM "Tim" OVER like WHERE properties(edge).likeness > 8.0 YIELD dst(edge)` is shown in the following figure.

Expand Down

0 comments on commit 79162c7

Please sign in to comment.