8000 Update architecture-of-scala-213-collections.md by manishbansal8843 · Pull Request #1775 · scala/docs.scala-lang · GitHub
[go: up one dir, main page]

Skip to content

Update architecture-of-scala-213-collections.md #1775

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

Merged
merged 1 commit into from
Sep 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _overviews/core/architecture-of-scala-213-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ Let’s detail the implementation of `filter`, step by step:
concrete collections: they can decide to evaluate in a strict or non-strict way
the elements resulting from the operation.

The implementation of `map` is similar, excepted that instead of using
The implementation of `map` is similar, except that instead of using
`fromSpecific` it uses `from` which takes as parameter an
iterable whose element type `E` is arbitrary.

Expand Down
0