Skip to content

Commit

Permalink
Edit function names to follow convention
Browse files Browse the repository at this point in the history
  • Loading branch information
ryn5 committed Nov 1, 2023
1 parent ba7dbbe commit c0ff820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gremlin-dotnet/Examples/BasicGremlin/BasicGremlin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static async Task Main()
var v2 = g.AddV("person").Property("name", "stephen").Next();
var v3 = g.AddV("person").Property("name", "vadas").Next();

// Be sure to use a terminating step like next() or iterate() so that the traversal "executes"
// Be sure to use a terminating step like Next() or Iterate() so that the traversal "executes"
// Iterate() does not return any data and is used to just generate side-effects (i.e. write data to the database)
g.V(v1).AddE("knows").To(v2).Property("weight", 0.75).Iterate();
g.V(v1).AddE("knows").To(v3).Property("weight", 0.75).Iterate();
Expand Down
2 changes: 1 addition & 1 deletion gremlin-go/examples/basic_gremlin.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {
v2Vertex, err := v2.GetVertex()
v3Vertex, err := v3.GetVertex()

// Be sure to use a terminating step like next() or iterate() so that the traversal "executes"
// Be sure to use a terminating step like Next() or Iterate() so that the traversal "executes"
// Iterate() does not return any data and is used to just generate side-effects (i.e. write data to the database)
promise := g.V(v1Vertex).AddE("knows").To(v2Vertex).Property("weight", 0.75).Iterate()
err = <-promise
Expand Down

0 comments on commit c0ff820

Please sign in to comment.