Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: typo in documentation for Tuple.zip (#22313)
## Before ```scala /** Given two tuples, `(a1, ..., an)` and `(a1, ..., an)`, returns a tuple * `((a1, b1), ..., (an, bn))` ... */ ``` ## After ```scala /** Given two tuples, `(a1, ..., an)` and `(b1, ..., bn)`, returns a tuple * `((a1, b1), ..., (an, bn))` ... */ ```
- Loading branch information