Skip to content

Commit f6b852a

Browse files
srowenAndrew Or
authored andcommitted
[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
1 parent e200ac8 commit f6b852a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ for details.
913913
</tr>
914914
<tr>
915915
<td> <b>cogroup</b>(<i>otherDataset</i>, [<i>numTasks</i>]) </td>
916-
<td> When called on datasets of type (K, V) and (K, W), returns a dataset of (K, Iterable&lt;V&gt;, Iterable&lt;W&gt;) tuples. This operation is also called <code>groupWith</code>. </td>
916+
<td> When called on datasets of type (K, V) and (K, W), returns a dataset of (K, (Iterable&lt;V&gt;, Iterable&lt;W&gt;)) tuples. This operation is also called <code>groupWith</code>. </td>
917917
</tr>
918918
<tr>
919919
<td> <b>cartesian</b>(<i>otherDataset</i>) </td>

0 commit comments

Comments
 (0)