Skip to content

Commit

Permalink
add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
amber-moe committed Mar 2, 2020
1 parent 55fc9df commit ddc221b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ nebula> GO FROM 100 OVER follow, serve YIELD follow.degree, serve.start_year;
例如:

```ngql
nebula> GO FROM 100 OVER follow REVERSELY YIELD follow._src -- 返回 100
nebula> GO FROM 100 OVER follow REVERSELY YIELD follow._src; -- 返回 100
```

```ngql
Expand Down Expand Up @@ -180,7 +180,7 @@ nebula> GO FROM 100 OVER follow REVERSELY YIELD follow._dst AS id | \
例如:

```ngql
nebula> GO FROM 102 OVER follow BIDIRECT
nebula> GO FROM 102 OVER follow BIDIRECT;
===============
| follow._dst |
===============
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Currently, **Nebula Graph** supports traversing reversely using keyword `REVERSE
For example:

```ngql
nebula> GO FROM 100 OVER follow REVERSELY YIELD follow._src -- returns 100
nebula> GO FROM 100 OVER follow REVERSELY YIELD follow._src; -- returns 100
```

```ngql
Expand Down Expand Up @@ -184,7 +184,7 @@ Currently, **Nebula Graph** supports traversing along in and out edges using key
For example:

```ngql
nebula> GO FROM 102 OVER follow BIDIRECT
nebula> GO FROM 102 OVER follow BIDIRECT;
===============
| follow._dst |
===============
Expand Down

0 comments on commit ddc221b

Please sign in to comment.