You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by da...@apache.org on 2016/09/26 17:26:31 UTC

[05/21] tinkerpop git commit: Query produces 2 results since 3.0.0

Query produces 2 results since 3.0.0


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

Branch: refs/heads/TINKERPOP-1458
Commit: bf88829bc5ac7b012269b4207533bc6a70cfd6fb
Parents: 54ed33d
Author: Robert Dale <ro...@gmail.com>
Authored: Wed Sep 21 14:22:08 2016 -0400
Committer: Robert Dale <ro...@gmail.com>
Committed: Wed Sep 21 14:22:08 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bf88829b/docs/src/reference/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index e8d40e5..e907376 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -1874,8 +1874,8 @@ g.V().aggregate('x').limit(1).cap('x')
 g.V().store('x').limit(1).cap('x')
 ----
 
-It is interesting to note that there are three results in the `store()` side-effect even though the interval
-selection is for 2 objects. Realize that when the third object is on its way to the `range()` filter (i.e. `[0..1]`),
+It is interesting to note that there are two results in the `store()` side-effect even though the interval
+selection is for 1 object. Realize that when the second object is on its way to the `range()` filter (i.e. `[0..1]`),
 it passes through `store()` and thus, stored before filtered.
 
 [gremlin-groovy,modern]