Github user okram commented on a diff in the pull request: https://github.com/apache/incubator-tinkerpop/pull/284#discussion_r57778538 --- Diff: docs/src/reference/the-traversal.asciidoc --- @@ -1376,6 +1376,24 @@ metrics = t.getSideEffects().get('metrics') For traversal compilation information, please see <<explain-step,`explain()`>>-step. +[[project-step]] +Project Step +~~~~~~~~~~~~ + +The `project()`-step (*map*) projects labeled attributes of the current object into a `Map<String,Object>`. It is similar +to <<select-step,`select()`>>-step, save that instead of retrieving and modulating historic traverser state, it modulates +the current state of the traverser. + +[gremlin-groovy,modern] +---- +g.V().out('created'). + project('a",'b'). --- End diff -- I just fixed. I built the docs, then reformatted the text and I caused that. The docs are rebuilding right now... then I will push the typo fix.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---