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 2020/12/22 20:26:14 UTC

[tinkerpop] 01/03: Minor updates to translator docs 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 caa17d8585838be2e0c2c628213955a6f8705c4f
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Dec 22 15:06:59 2020 -0500

    Minor updates to translator docs CTR
---
 docs/src/reference/the-traversal.asciidoc | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index d076921..23cf328 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -4192,21 +4192,22 @@ specifically a `ScriptTranslator` which takes Gremlin `Bytecode` of a traversal
 of that `Bytecode` in the programming language syntax that the `ScriptTranslator` instance supports. The translation
 therefore allows Gremlin to be converted from the host programming language of the `Translator` to another.
 
-The following translators are available:
+The following translators are available, where the first column identifies the host programming language and the
+columns represent the language that Gremlin can be generated in:
 
 [width="100%",cols="<,^,^,^,^,^",options="header"]
 |=========================================================
 | |Java |Groovy |Javascript |.NET |Python
-|*Java* |- |X | | |X
-|*Groovy* | |- | | |X
-|*Javascript* | |X |- | |
-|*.NET* | | | |- |
-|*Python*  | | | | |-
+|*Java* | |X | | |X
+|*Groovy* | |X | | |X
+|*Javascript* | |X | | |
+|*.NET* | | | | |
+|*Python*  | | | | |
 |=========================================================
 
 Each programming language has its own API for translation, but the pattern is quite similar from one to the next:
 
-WARN: While `Translator` implementations have been around for some time, they are still in their early stages from
+WARNING: While `Translator` implementations have been around for some time, they are still in their early stages from
 an interface perspective. API changes may occur in the near future.
 
 [source,java,tab]