You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2017/11/22 12:48:11 UTC

tinkerpop git commit: TINKERPOP-1840 Added links for emit() and until() in docs to repeat() CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 76c42faf3 -> 0f271978f


TINKERPOP-1840 Added links for emit() and until() in docs to repeat() CTR


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

Branch: refs/heads/tp32
Commit: 0f271978f03b8a019e691b56db653f718765c0a1
Parents: 76c42fa
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Nov 22 07:35:52 2017 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Nov 22 07:47:38 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/0f271978/docs/src/reference/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index a37a8bc..dc42bc9 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -643,6 +643,12 @@ g.V().drop()
 g.V()
 ----
 
+[[emit-step]]
+=== Emit Step
+
+The `emit`-step is not an actual step, but is instead a step modulator for `<<repeat-step,repeat()>>` (find more
+documentation on the `emit()` there).
+
 [[explain-step]]
 === Explain Step
 
@@ -2289,6 +2295,12 @@ g.V(4).union(
          out().values('lang')).path()
 ----
 
+[[until-step]]
+=== Until Step
+
+The `until`-step is not an actual step, but is instead a step modulator for `<<repeat-step,repeat()>>` (find more
+documentation on the `until()` there).
+
 [[value-step]]
 === Value Step