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 2022/08/10 20:41:06 UTC

[tinkerpop] branch master updated (1f2c8fac6c -> 2b2f118f07)

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

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


    from 1f2c8fac6c Merge branch '3.6-dev'
     new 1191851431 Fixed syntax in docs so parsing tests in the grammar pass CTR
     new d700cae1cc Merge branch '3.5-dev' into 3.6-dev
     new 2b2f118f07 Merge branch '3.6-dev'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/src/recipes/anti-patterns.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[tinkerpop] 01/03: Fixed syntax in docs so parsing tests in the grammar pass CTR

Posted by sp...@apache.org.
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

commit 1191851431448e2971f10280cb165fb927328640
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Aug 10 16:40:27 2022 -0400

    Fixed syntax in docs so parsing tests in the grammar pass CTR
---
 docs/src/recipes/anti-patterns.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/src/recipes/anti-patterns.asciidoc b/docs/src/recipes/anti-patterns.asciidoc
index 5d349ab960..839764e38b 100644
--- a/docs/src/recipes/anti-patterns.asciidoc
+++ b/docs/src/recipes/anti-patterns.asciidoc
@@ -299,7 +299,7 @@ These examples are a bit contrived for sake of demonstration, but the common pat
 
 [gremlin-groovy,modern]
 ----
-g.withSideEffect('x',[name: 'josh']).V().has('name', select('x').select('name'))
+g.withSideEffect('x',['name': 'josh']).V().has('name', select('x').select('name'))
 ----
 
 The above example represents a commonly seen mistake where we try to dynamically inject the value "josh" from a
@@ -309,7 +309,7 @@ as in the following example:
 
 [gremlin-groovy,modern]
 ----
-g.withSideEffect('x',[name: 'josh']).V().as('a').where('a',eq('x')).by('name')
+g.withSideEffect('x',['name': 'josh']).V().as('a').where('a',eq('x')).by('name')
 ----
 
 As a final note on this topic, it's worth noting how `has(String,Traversal)` can be used. Note that the traverser that


[tinkerpop] 02/03: Merge branch '3.5-dev' into 3.6-dev

Posted by sp...@apache.org.
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

commit d700cae1cc4b5c65f259abeb595cb8e91801409b
Merge: 4cfd5da7d7 1191851431
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Aug 10 16:40:50 2022 -0400

    Merge branch '3.5-dev' into 3.6-dev

 docs/src/recipes/anti-patterns.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[tinkerpop] 03/03: Merge branch '3.6-dev'

Posted by sp...@apache.org.
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

commit 2b2f118f073d258176fc5d3382e29bbe449d011a
Merge: 1f2c8fac6c d700cae1cc
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Aug 10 16:40:58 2022 -0400

    Merge branch '3.6-dev'

 docs/src/recipes/anti-patterns.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)