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/11/23 23:47:31 UTC

incubator-tinkerpop git commit: made the explain()-step example in the docs a bit more complicated for effect. CTR.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 3251482ad -> f0d52e6a6


made the explain()-step example in the docs a bit more complicated for effect. CTR.


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

Branch: refs/heads/master
Commit: f0d52e6a60f6760d4a85c86021af16798bf9c92a
Parents: 3251482
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Nov 23 15:47:26 2015 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Nov 23 15:47:26 2015 -0700

----------------------------------------------------------------------
 docs/src/reference/the-traversal.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/f0d52e6a/docs/src/reference/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index 0b82823..c10808f 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -592,7 +592,7 @@ post strategy application. The final traversal is the resultant execution plan.
 
 [gremlin-groovy,modern]
 ----
-g.V().outE().identity().inV().count().is(gt(5)).explain()
+g.V().hasLabel('person').outE().identity().inV().count().is(gt(5)).explain()
 ----
 
 For traversal profiling information, please see <<profile-step,`profile()`>>-step.