Skip to content

Commit

Permalink
fix: typo in documentation for Tuple.zip
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoshihou514 authored Jan 6, 2025
1 parent 1448123 commit 8227258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/scala/Tuple.scala
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ sealed trait Tuple extends Product {
inline def size[This >: this.type <: Tuple]: Size[This] =
runtime.Tuples.size(this).asInstanceOf[Size[This]]

/** Given two tuples, `(a1, ..., an)` and `(a1, ..., an)`, returns a tuple
/** Given two tuples, `(a1, ..., an)` and `(b1, ..., bn)`, returns a tuple
* `((a1, b1), ..., (an, bn))`. If the two tuples have different sizes,
* the extra elements of the larger tuple will be disregarded.
* The result is typed as `((A1, B1), ..., (An, Bn))` if at least one of the
Expand Down

0 comments on commit 8227258

Please sign in to comment.