Skip to content

Commit c411182

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 (cherry picked from commit f6b852a) Signed-off-by: Andrew Or <[email protected]>
1 parent 810a224 commit c411182

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
@@ -911,7 +911,7 @@ for details.
911911
</tr>
912912
<tr>
913913
<td> <b>cogroup</b>(<i>otherDataset</i>, [<i>numTasks</i>]) </td>
914-
<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>
914+
<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>
915915
</tr>
916916
<tr>
917917
<td> <b>cartesian</b>(<i>otherDataset</i>) </td>

0 commit comments

Comments
 (0)