Skip to content

Fix typo in overview.md #2935

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
Dec 19, 2023
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
4 changes: 2 additions & 2 deletions _overviews/collections-2.13/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Scala collections systematically distinguish between mutable and
immutable collections. A _mutable_ collection can be updated, reduced or
extended in place. This means you can change, add, or remove elements
of a collection as a side effect. _Immutable_ collections, by
contrast, never change. You have still operations that simulate
contrast, never change. You still have operations that simulate
additions, removals, or updates, but those operations will in each
case return a new collection and leave the old collection unchanged.

Expand All @@ -36,7 +36,7 @@ always yield a collection with the same elements.

A collection in package `scala.collection.mutable` is known to have
some operations that change the collection in place. So dealing with
mutable collection means you need to understand which code changes
a mutable collection means you need to understand which code changes
which collection when.

A collection in package `scala.collection` can be either mutable or
Expand Down