Skip to content

Commit

Permalink
Fix "aiport" typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fridex committed Mar 20, 2018
1 parent 0483de9 commit bbeee0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions book/Gremlin-Graph-Guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2596,7 +2596,7 @@ called 'aus'.

[source,groovy]
----
// Store the properties for the AUS aiport in the variable aus.
// Store the properties for the AUS airport in the variable aus.
aus=g.V().has('code','AUS').valueMap().next()
----

Expand Down Expand Up @@ -6875,9 +6875,9 @@ xyz.addEdge('route',dfw)

In many cases it is more convenient, and also recommendd, to perform each of the
previous operations using just the traversal object 'g'. The following example does
just that. We first create a new aiport vertex for our imaginary airport and store it's
vertex in the variable 'xyz'. We can then use that stored value when we create the
edge also using a traversal. As with many parts of the Gremlin language, there is
just that. We first create a new airport vertex for our imaginary airport and store
it's vertex in the variable 'xyz'. We can then use that stored value when we create
the edge also using a traversal. As with many parts of the Gremlin language, there is
more than one way to achieve the same results.

[source,groovy]
Expand Down

0 comments on commit bbeee0e

Please sign in to comment.