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 1404d5231ea1abecd33effd2ac3d0014a33ea4d4 Author: stepmall <[email protected]> AuthorDate: Sat Jul 25 14:17:41 2026 +0000 Fix incorrect step name in PropertyMap reference section The prose in the PropertyMap section referred to the step as propertiesMap(), but the actual step is propertyMap(). The wrong name is especially misleading in Groovy, where propertiesMap() does not error and instead silently returns empty results, so a reader copying the prose name gets no output and no clue why. Correct the prose to propertyMap() to match the executable examples in the same section. 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 0b76c4a1ec..8fcf078ec0 100644 --- a/docs/src/reference/the-traversal.asciidoc +++ b/docs/src/reference/the-traversal.asciidoc @@ -3824,7 +3824,7 @@ link:++https://tinkerpop.apache.org/javadocs/x.y.z/core/org/apache/tinkerpop/gre [[propertymap-step]] === PropertyMap Step -The `propertiesMap()`-step yields a Map representation of the properties of an element. +The `propertyMap()`-step yields a Map representation of the properties of an element. [gremlin-groovy,modern] ----
