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 0adf24f563 Remove stale trailing-underscore GType NOTE blocks from
AsNumber step
0adf24f563 is described below
commit 0adf24f5633470b75feae13ea3d260ad1c37bacc
Author: Stephen Mallette <[email protected]>
AuthorDate: Mon Jul 20 19:08:34 2026 +0000
Remove stale trailing-underscore GType NOTE blocks from AsNumber step
Assisted-by: Kiro:claude-sonnet-4-20250514
---
docs/src/reference/the-traversal.asciidoc | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/docs/src/reference/the-traversal.asciidoc
b/docs/src/reference/the-traversal.asciidoc
index 5c56c9bba0..86331fce3b 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -1000,26 +1000,6 @@ g.inject("2023-08-02T00:00:00Z").asDate().asNumber() <4>
<3> A double is converted into an int.
<4> A date is converted into milliseconds since epoch.
-[NOTE, caption=Java]
-====
-The enums values `byte`, `short`, `int`, `long`, `float`, `double` are
reserved word in Java, and therefore must be
-referred to in Gremlin with an underscore appended as a suffix: `byte_`,
`short_`, `int_`, `long_`, `float_`, `double_`.
-====
-
-[NOTE, caption=Groovy & Gremlin Console]
-====
-The enums values `byte`, `short`, `int`, `long`, `float`, `double` are
reserved word in Groovy, therefore as the Gremlin
-Console is Groovy-based, they must be referred to in Gremlin with an
underscore appended as a suffix: `byte_`,
-`short_`, `int_`, `long_`, `float_`, `double_`.
-====
-
-[NOTE, caption=JavaScript]
-====
-The enums values `byte`, `short`, `int`, `long`, `float`, `double` are
reserved word in Javascript, and therefore must
-be referred to in Gremlin with an underscore appended as a suffix: `byte_`,
`short_`, `int_`, `long_`, `float_`,
-`double_`.
-====
-
*Additional References*
link:++https://tinkerpop.apache.org/javadocs/x.y.z/core/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html#asNumber()++[`asNumber()`]