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 18:48:18 UTC

[tinkerpop] branch master updated: More doc formatting 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 1c0e8a4  More doc formatting CTR
1c0e8a4 is described below

commit 1c0e8a4af1c5b476719abafed326b08d174ea600
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Fri May 24 14:47:26 2019 -0400

    More doc formatting CTR
---
 docs/src/reference/compilers.asciidoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/src/reference/compilers.asciidoc b/docs/src/reference/compilers.asciidoc
index 9ea68cb..5b375b0 100644
--- a/docs/src/reference/compilers.asciidoc
+++ b/docs/src/reference/compilers.asciidoc
@@ -422,6 +422,7 @@ steps as shown below:
 
 [gremlin-groovy,modern]
 ----
+g = graph.traversal(SparqlTraversalSource)
 g.sparql("SELECT ?name ?age WHERE { ?person v:name ?name . ?person v:age ?age }")
 g.sparql("SELECT ?name ?age WHERE { ?person v:name ?name . ?person v:age ?age }").select("name")
 g.sparql("SELECT * WHERE { }").out("knows").values("name")