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/05/24 17:04:21 UTC

[tinkerpop] branch master updated: Moved some text to the end of the file to keep the file from ending with a codeblock 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 6a8706a  Moved some text to the end of the file to keep the file from ending with a codeblock CTR
6a8706a is described below

commit 6a8706a4f55b61db371ddf2d115ed9a56c1db49b
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Fri May 24 13:03:55 2019 -0400

    Moved some text to the end of the file to keep the file from ending with a codeblock CTR
---
 docs/src/reference/compilers.asciidoc | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/docs/src/reference/compilers.asciidoc b/docs/src/reference/compilers.asciidoc
index b39408c..9ea68cb 100644
--- a/docs/src/reference/compilers.asciidoc
+++ b/docs/src/reference/compilers.asciidoc
@@ -418,7 +418,7 @@ WHERE {
 === With Gremlin
 
 The `sparql()`-step takes a SPARQL query and returns a result. That result can be further processed by standard Gremlin
-steps, which introduces some interesting possibilities.
+steps as shown below:
 
 [gremlin-groovy,modern]
 ----
@@ -429,4 +429,6 @@ g.withSack(1.0f).sparql("SELECT * WHERE { }").
   repeat(outE().sack(mult).by("weight").inV()).
     times(2).
   sack()
-----
\ No newline at end of file
+----
+
+Mixing SPARQL with Gremlin steps introduces some interesting possibilities for complex traversals.
\ No newline at end of file