Merge branch '3.5-dev' into 3.6-dev
diff --git a/docs/src/recipes/anti-patterns.asciidoc b/docs/src/recipes/anti-patterns.asciidoc
index 5d349ab..839764e 100644
--- a/docs/src/recipes/anti-patterns.asciidoc
+++ b/docs/src/recipes/anti-patterns.asciidoc
@@ -299,7 +299,7 @@
 
 [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 @@
 
 [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