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/04/05 15:05:09 UTC

[tinkerpop] 01/06: Fixed code sample so that it generates 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

commit 92920d09260cf7a2947030e56dbe422e1efa77f3
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Apr 5 09:40:16 2022 -0400

    Fixed code sample so that it generates CTR
---
 docs/src/reference/implementations-tinkergraph.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/src/reference/implementations-tinkergraph.asciidoc b/docs/src/reference/implementations-tinkergraph.asciidoc
index 9dc97b740d..a37633801c 100644
--- a/docs/src/reference/implementations-tinkergraph.asciidoc
+++ b/docs/src/reference/implementations-tinkergraph.asciidoc
@@ -115,7 +115,7 @@ TinkerGraph can store any Java `Object` for a property value. It is therefore im
 the values that are being used and it is often best to be explicit in terms of exactly what type is being used,
 especially in the case of numbers.
 
-[[gremlin-groovy]]
+[gremlin-groovy]
 ----
 graph = TinkerGraph.open()
 g = traversal().withEmbedded(graph)