This is an automated email from the ASF dual-hosted git repository.
dkuppitz pushed a commit to branch TINKERPOP-2114
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/TINKERPOP-2114 by this push:
new d4f04b2 fixup! TINKERPOP-2114 Documented common Gremlin anti-patterns
(and solutions)
d4f04b2 is described below
commit d4f04b243ccef69ce245b55744a5266746b979f7
Author: Daniel Kuppitz <[email protected]>
AuthorDate: Mon Dec 17 09:58:27 2018 -0700
fixup! TINKERPOP-2114 Documented common Gremlin anti-patterns (and
solutions)
---
docs/src/recipes/anti-patterns.asciidoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/src/recipes/anti-patterns.asciidoc
b/docs/src/recipes/anti-patterns.asciidoc
index 3a44bf6..4c67a41 100644
--- a/docs/src/recipes/anti-patterns.asciidoc
+++ b/docs/src/recipes/anti-patterns.asciidoc
@@ -163,7 +163,7 @@ g.V().as('a').
by('name')
----
-Ignoring the anti-patterns that were discussed before there's not much wrong
with the traversal, but note the two chained `where()`-steps
+Ignoring the anti-patterns that were discussed before, there's not much wrong
with the traversal, but note the two chained `where()`-steps
(`where(lt('a')).by(id).where(gt('b'))).by(id)`). Both steps compare the id of
the current vertex with the id of a previous vertex. These
two conditions can be combined on the predicate level.