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

incubator-tinkerpop git commit: minor fix in the docs

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master cc5db9239 -> 62ff43da3


minor fix in the 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/62ff43da
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/62ff43da
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/62ff43da

Branch: refs/heads/master
Commit: 62ff43da353d51d6214d843bb51eb755df3547e6
Parents: cc5db92
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Fri Jun 19 01:08:07 2015 +0200
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Fri Jun 19 01:08:07 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/62ff43da/docs/src/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-traversal.asciidoc b/docs/src/the-traversal.asciidoc
index cd5df51..3d9a85e 100644
--- a/docs/src/the-traversal.asciidoc
+++ b/docs/src/the-traversal.asciidoc
@@ -1560,7 +1560,7 @@ g.V().where(out('created')).values('name') <1>
 g.V().out('knows').where(out('created')).values('name') <2>
 g.V().where(out('created').count().is(gte(2))).values('name') <3>
 g.V().where(out('knows').where(out('created'))).values('name') <4>
-g.V().where(not(out('created'))).where(__.in('knows')).values('name') <5>
+g.V().where(__.not(out('created'))).where(__.in('knows')).values('name') <5>
 ----
 
 <1> What are the names of the people who have created a project?