You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/06/19 23:34:47 UTC

incubator-tinkerpop git commit: small tweak to docs.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 9181992fb -> 1422196bd


small tweak to docs.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/1422196b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/1422196b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/1422196b

Branch: refs/heads/master
Commit: 1422196bd25f6f872922ec4289ef4ff8cac09fe0
Parents: 9181992
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Fri Jun 19 15:34:32 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Fri Jun 19 15:34:43 2015 -0600

----------------------------------------------------------------------
 docs/src/implementations.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/1422196b/docs/src/implementations.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/implementations.asciidoc b/docs/src/implementations.asciidoc
index 13ffba4..cbb58f2 100644
--- a/docs/src/implementations.asciidoc
+++ b/docs/src/implementations.asciidoc
@@ -477,12 +477,12 @@ The execution times for a vertex lookup by property is provided below for both n
 graph = TinkerGraph.open()
 g = graph.traversal()
 graph.io(graphml()).readGraph('data/grateful-dead.xml')
-clock(1000) {g.V().has('name','Garcia').next()} <1>
+clock(1000) {g.V().has('name','Garcia').iterate()} <1>
 graph = TinkerGraph.open()
 g = graph.traversal()
 graph.createIndex('name',Vertex.class)
 graph.io(graphml()).readGraph('data/grateful-dead.xml')
-clock(1000){g.V().has('name','Garcia').next()} <2>
+clock(1000){g.V().has('name','Garcia').iterate()} <2>
 ----
 
 <1> Determine the average runtime of 1000 vertex lookups when no `name`-index is defined.