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 2016/06/15 15:01:27 UTC

tinkerpop git commit: Remove reference to the third by() on group() docs CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/tp31 2c835c30b -> ebfa7859f


Remove reference to the third by() on group() docs CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ebfa7859
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ebfa7859
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/ebfa7859

Branch: refs/heads/tp31
Commit: ebfa7859fff273a77cf94fd9e491701b4c7a9e46
Parents: 2c835c3
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Jun 15 11:00:19 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Jun 15 11:00:19 2016 -0400

----------------------------------------------------------------------
 docs/src/reference/the-traversal.asciidoc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ebfa7859/docs/src/reference/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index 8327dc9..ca4c6be 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -669,11 +669,10 @@ g.V().group().by(label).by(count()) <3>
 <2> For each vertex in the group, get their name.
 <3> For each grouping, what is its size?
 
-The three projection parameters available to `group()` via `by()` are:
+The two projection parameters available to `group()` via `by()` are:
 
 . Key-projection: What feature of the object to group on (a function that yields the map key)?
 . Value-projection: What feature of the group to store in the key-list?
-. Reduce-projection: What feature of the key-list to ultimately return?
 
 [[groupcount-step]]
 GroupCount Step