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 2019/07/01 12:05:23 UTC

[tinkerpop] branch master updated: Added notes to with() regarding differences for js/python CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new b70e6b6  Added notes to with() regarding differences for js/python CTR
     new 2fd72bf  Merge branch 'tp34'
b70e6b6 is described below

commit b70e6b6dfa40c6d7fad46bd29f916870276e5e0c
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Mon Jul 1 08:04:45 2019 -0400

    Added notes to with() regarding differences for js/python CTR
---
 docs/src/reference/the-traversal.asciidoc | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index 7eb4b23..3e4463e 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -3332,7 +3332,7 @@ to in Gremlin with the double underscore `__.in()`.
 
 [NOTE, caption=Javascript]
 ====
-The term `in` is a reserved word in Python, and therefore must be referred to in Gremlin with `in_()`.
+The term `in` is a reserved word in Javascript, and therefore must be referred to in Gremlin with `in_()`.
 ====
 
 [NOTE, caption=Python]
@@ -3447,6 +3447,16 @@ The `with()`-step is not an actual step, but is instead a "step modulator" which
 prior to it. The `with()`-step provides additional "configuration" information to steps that implement the `Configuring`
 interface. Steps that allow for this type of modulation will explicitly state so in their documentation.
 
+[NOTE, caption=Javascript]
+====
+The term `with` is a reserved word in Javascript, and therefore must be referred to in Gremlin with `with_()`.
+====
+
+[NOTE, caption=Python]
+====
+The term `with` is a reserved word in Python, and therefore must be referred to in Gremlin with `with_()`.
+====
+
 [[a-note-on-predicates]]
 == A Note on Predicates