Repository: spark Updated Branches: refs/heads/branch-1.0 b530bc92a -> a1425db96
[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/a1425db9 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a1425db9 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a1425db9 Branch: refs/heads/branch-1.0 Commit: a1425db96a1126ef326a094eaa8abfa575db4b55 Parents: b530bc9 Author: Sean Owen <[email protected]> Authored: Fri Jan 16 09:28:44 2015 -0800 Committer: Andrew Or <[email protected]> Committed: Fri Jan 16 09:29:13 2015 -0800 ---------------------------------------------------------------------- docs/programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/a1425db9/docs/programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/programming-guide.md b/docs/programming-guide.md index c04c3fa..7e6c089 100644 --- a/docs/programming-guide.md +++ b/docs/programming-guide.md @@ -835,7 +835,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]
