TINKERPOP-1878 Minor transpiler doc fixes
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1d152ce4 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1d152ce4 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/1d152ce4 Branch: refs/heads/TINKERPOP-1878 Commit: 1d152ce461700e0e1d56f72a654dbf3ac278e77d Parents: 5ec6f2f Author: Stephen Mallette <[email protected]> Authored: Fri Jun 15 08:16:03 2018 -0400 Committer: Stephen Mallette <[email protected]> Committed: Wed Jun 20 07:27:46 2018 -0400 ---------------------------------------------------------------------- docs/src/reference/transpilers.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/1d152ce4/docs/src/reference/transpilers.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/transpilers.asciidoc b/docs/src/reference/transpilers.asciidoc index 1bb7728..0483a5d 100644 --- a/docs/src/reference/transpilers.asciidoc +++ b/docs/src/reference/transpilers.asciidoc @@ -131,7 +131,7 @@ The current implementation of SPARQL-Gremlin transpiler (i.e. SPARQL-Gremlin) do * SPARQL queries with variables in the predicate position are not currently covered, with an exception of the following case: -[source,text] +[source,groovy] ---- g.sparql("""SELECT * WHERE { ?x ?y ?z . }""") ---- @@ -141,7 +141,7 @@ SPARQL query has the same number of patterns on both the side of the union opera SPARQL query cannot be mapped using Gremlinator, since a union is executed between different number of graph patterns (two patterns `union` 1 pattern). -[source,text] +[source,groovy] ---- g.sparql("""SELECT * WHERE { {?person e:created ?software . @@ -163,7 +163,7 @@ g.sparql("""SELECT ?age WHERE { Whereas, the following SPARQL query will be invalid: -[source,text] +[source,groovy] ---- g.sparql("""SELECT ?person WHERE { ?person v:label "person" .
