Commit dc0bb59
authored
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))` ...
*/
```1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| |||
0 commit comments