Repository: spark Updated Branches: refs/heads/branch-1.1 810a2248f -> c411182c6
[DOCS] Fix typo in return type of cogroup This fixes a simple typo in the cogroup docs noted in http://mail-archives.apache.org/mod_mbox/spark-user/201501.mbox/%3CCAMAsSdJ8_24evMAMg7fOZCQjwimisbYWa9v8BN6Rc3JCauja6wmail.gmail.com%3E I didn't bother with a JIRA Author: Sean Owen <[email protected]> Closes #4072 from srowen/CogroupDocFix and squashes the following commits: 43c850b [Sean Owen] Fix typo in return type of cogroup (cherry picked from commit f6b852aade7668c99f37c69f606c64763cb265d2) Signed-off-by: Andrew Or <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c411182c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c411182c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c411182c Branch: refs/heads/branch-1.1 Commit: c411182c640940fe577c0529d2df0d2cd7fc0718 Parents: 810a224 Author: Sean Owen <[email protected]> Authored: Fri Jan 16 09:28:44 2015 -0800 Committer: Andrew Or <[email protected]> Committed: Fri Jan 16 09:28:59 2015 -0800 ---------------------------------------------------------------------- docs/programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c411182c/docs/programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/programming-guide.md b/docs/programming-guide.md index 6ae780d..999bea0 100644 --- a/docs/programming-guide.md +++ b/docs/programming-guide.md @@ -911,7 +911,7 @@ for details. </tr> <tr> <td> <b>cogroup</b>(<i>otherDataset</i>, [<i>numTasks</i>]) </td> - <td> When called on datasets of type (K, V) and (K, W), returns a dataset of (K, Iterable<V>, Iterable<W>) tuples. This operation is also called <code>groupWith</code>. </td> + <td> When called on datasets of type (K, V) and (K, W), returns a dataset of (K, (Iterable<V>, Iterable<W>)) tuples. This operation is also called <code>groupWith</code>. </td> </tr> <tr> <td> <b>cartesian</b>(<i>otherDataset</i>) </td> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
