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 2020/05/26 12:13:24 UTC

[tinkerpop] branch master updated: Fixed common imports for js 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 6b51748  Fixed common imports for js CTR
     new 1657958  Merge branch '3.4-dev'
6b51748 is described below

commit 6b517489c7cf86fe0322a6d77cc92966b6254e3b
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Tue May 26 08:13:01 2020 -0400

    Fixed common imports for js CTR
---
 docs/src/reference/gremlin-variants.asciidoc | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/docs/src/reference/gremlin-variants.asciidoc b/docs/src/reference/gremlin-variants.asciidoc
index 9a01d6c..2f596eb 100644
--- a/docs/src/reference/gremlin-variants.asciidoc
+++ b/docs/src/reference/gremlin-variants.asciidoc
@@ -1291,14 +1291,15 @@ const gremlin = require('gremlin');
 const traversal = gremlin.process.AnonymousTraversalSource.traversal;
 const __ = gremlin.process.statics;
 const DriverRemoteConnection = gremlin.driver.DriverRemoteConnection;
-const column = gremlin.process.traversal.column
-const direction = gremlin.process.traversal.direction
-const p = gremlin.process.traversal.P
-const pick = gremlin.process.traversal.pick
-const pop = gremlin.process.traversal.pop
-const order = gremlin.process.traversal.order
-const scope = gremlin.process.traversal.scope
-const t = gremlin.process.traversal.t
+const column = gremlin.process.column
+const direction = gremlin.process.direction
+const p = gremlin.process.P
+const textp = gremlin.process.TextP
+const pick = gremlin.process.pick
+const pop = gremlin.process.pop
+const order = gremlin.process.order
+const scope = gremlin.process.scope
+const t = gremlin.process.t
 ----
 
 === Submitting Scripts