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 eaf18f8139 Fix index() step callout: reference statement 2 and correct
'explicitly' typo
eaf18f8139 is described below
commit eaf18f813990dc576346715d65cdbebae1a16e8e
Author: Stephen Mallette <[email protected]>
AuthorDate: Wed Sep 9 15:12:46 2026 +0000
Fix index() step callout: reference statement 2 and correct 'explicitly'
typo
The third example in the Index Step section is structurally identical to
the second example (both use the list indexer; the third just specifies it
explicitly), so callout 3 now references statement 2 rather than statement
1.
Also corrects the spelling of 'explicitly'.
Assisted-by: Kiro:claude-opus-4.8
---
docs/src/reference/the-traversal.asciidoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/src/reference/the-traversal.asciidoc
b/docs/src/reference/the-traversal.asciidoc
index d94ce89c22..505d2d1210 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -2578,7 +2578,7 @@ g.V().hasLabel("person").values("name").fold().
<1> Indexing non-collection items results in multiple indexed single-item
collections.
<2> Index all software names in their alphabetical order.
-<3> Same as statement 1, but with an explicitely specified list indexer.
+<3> Same as statement 2, but with an explicitly specified list indexer.
<4> Index all person names in their alphabetical order and store the result in
an ordered map.
*Additional References*