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/17 12:03:34 UTC

[tinkerpop] 01/02: Fixed typo in header ancho 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 f71ce0d7c03ab475df2bedc6f65555b0f2c57b9e
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Fri May 17 07:59:42 2019 -0400

    Fixed typo in header ancho CTR
---
 docs/src/reference/the-traversal.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index 41d2eab..914411c 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -3954,7 +3954,7 @@ social.Persons("marko").YoungestFriendsAge();
 social.Persons().Filter(CreatedAtLeast(2)).Count();
 ----
 
-[[gremli-javascript-dsl]]
+[[gremlin-javascript-dsl]]
 === Gremlin-JavaScript
 
 Developing Gremlin DSLs in JavaScript largely requires extension of existing core classes with use of standalone
@@ -4012,4 +4012,4 @@ To use the DSL, simply initialize the `g` as follows:
 const g = traversal(SocialTraversalSource).withRemote(connection);
 g.person('marko').aged(29).values('name').toList().
   then(names => console.log(names));
-----
\ No newline at end of file
+----