-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix documentation in Iterable.scala #21692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The documentation for zipAll is incorrect, e.g., List(1, 2, 3).zipAll(Set("x"), 0, "") produces a list, not a set.
We should also port the change to the scala/scala repository here. @charpov would you like to do it or should I open a PR? |
I signed the CLA. |
Great, thanks !
Sure no worries. I will open one and ping you there. |
Originally submitted in scala/scala3#21692 Co-authored-by: Michel Charpentier <charpov@users.noreply.github.com>
Originally submitted in scala/scala3#21692 Co-authored-by: Michel Charpentier <charpov@users.noreply.github.com>
Originally submitted in scala#21692 Co-authored-by: Michel Charpentier <charpov@users.noreply.github.com>
Originally submitted in #21692 Co-authored-by: Michel Charpentier <charpov@users.noreply.github.com>
The documentation for
zipAll
is incorrect, e.g.,List(1, 2, 3).zipAll(Set("x"), 0, "")
produces a list, not a set.