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/02/06 17:15:30 UTC

incubator-tinkerpop git commit: tweak to docs to see if Apache Git is working right.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master f085b03ae -> cda19d327


tweak to docs to see if Apache Git is working right.


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

Branch: refs/heads/master
Commit: cda19d327f4ce385ac84641bfefea0100281cea7
Parents: f085b03
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Fri Feb 6 09:15:27 2015 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Fri Feb 6 09:15:27 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/cda19d32/docs/src/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-traversal.asciidoc b/docs/src/the-traversal.asciidoc
index fcb4d6e..a3ee279 100644
--- a/docs/src/the-traversal.asciidoc
+++ b/docs/src/the-traversal.asciidoc
@@ -475,7 +475,7 @@ g.V().has('age',outside,[20,30]).values('age') <2>
 <1> Find all vertices whose ages are between 20 (inclusive) and 30 (exclusive).
 <2> Find all vertices whose ages are not between 20 (inclusive) and 30 (exclusive).
 
-It is also possible to filter any arbitrary object based on an anonymous traversal.
+It is also possible to filter any arbitrary object based on a anonymous traversal yielding at least one result.
 
 [gremlin-groovy,modern]
 ----