Repository: spark Updated Branches: refs/heads/master e200ac8e5 -> f6b852aad
[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 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f6b852aa Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f6b852aa Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f6b852aa Branch: refs/heads/master Commit: f6b852aade7668c99f37c69f606c64763cb265d2 Parents: e200ac8 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:44 2015 -0800 ---------------------------------------------------------------------- docs/programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/f6b852aa/docs/programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/programming-guide.md b/docs/programming-guide.md index 5e0d5c1..0211bba 100644 --- a/docs/programming-guide.md +++ b/docs/programming-guide.md @@ -913,7 +913,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]
