Skip to content

Commit

Permalink
Fix typo in collection.Iterable
Browse files Browse the repository at this point in the history
Originally submitted in scala/scala3#21692

Co-authored-by: Michel Charpentier <[email protected]>
  • Loading branch information
hamzaremmal and charpov committed Oct 4, 2024
1 parent 01f25e8 commit 18ea75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/scala/collection/Iterable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ trait IterableOps[+A, +CC[_], +C] extends Any with IterableOnce[A] with Iterable
* @param that the iterable providing the second half of each result pair
* @param thisElem the element to be used to fill up the result if this $coll is shorter than `that`.
* @param thatElem the element to be used to fill up the result if `that` is shorter than this $coll.
* @return a new collection of type `That` containing pairs consisting of
* @return a new collection of the type of this $coll containing pairs consisting of
* corresponding elements of this $coll and `that`. The length
* of the returned collection is the maximum of the lengths of this $coll and `that`.
* If this $coll is shorter than `that`, `thisElem` values are used to pad the result.
Expand Down

0 comments on commit 18ea75f

Please sign in to comment.