Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-2029-master 2ce9a6def -> 40b21bbd1
Removed note about infix restriction for `and()` and `or()` as they are no longer existent. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/9330fcbc Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/9330fcbc Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/9330fcbc Branch: refs/heads/TINKERPOP-2029-master Commit: 9330fcbc477e6a64649b6c6aa22f697756d31140 Parents: 2ce9a6d Author: Daniel Kuppitz <[email protected]> Authored: Mon Sep 10 11:49:52 2018 -0700 Committer: Daniel Kuppitz <[email protected]> Committed: Mon Sep 10 11:49:52 2018 -0700 ---------------------------------------------------------------------- docs/src/reference/the-traversal.asciidoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/9330fcbc/docs/src/reference/the-traversal.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc index f2a8375..6146f9b 100644 --- a/docs/src/reference/the-traversal.asciidoc +++ b/docs/src/reference/the-traversal.asciidoc @@ -339,8 +339,7 @@ g.V().and( The `and()`-step can take an arbitrary number of traversals. All traversals must produce at least one output for the original traverser to pass to the next step. -An link:http://en.wikipedia.org/wiki/Infix_notation[infix notation] can be used as well. Though, with infix notation, -only two traversals can be and'd together. +An link:http://en.wikipedia.org/wiki/Infix_notation[infix notation] can be used as well. [gremlin-groovy,modern] ---- @@ -1864,8 +1863,7 @@ g.V().or( The `or()`-step can take an arbitrary number of traversals. At least one of the traversals must produce at least one output for the original traverser to pass to the next step. -An link:http://en.wikipedia.org/wiki/Infix_notation[infix notation] can be used as well. Though, with infix notation, -only two traversals can be or'd together. +An link:http://en.wikipedia.org/wiki/Infix_notation[infix notation] can be used as well. [gremlin-groovy,modern] ----
