Skip to content

Commit 218f611

Browse files
authored
Update overview.md (#2935)
fix typo
1 parent 6e715db commit 218f611

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_overviews/collections-2.13/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Scala collections systematically distinguish between mutable and
1616
immutable collections. A _mutable_ collection can be updated, reduced or
1717
extended in place. This means you can change, add, or remove elements
1818
of a collection as a side effect. _Immutable_ collections, by
19-
contrast, never change. You have still operations that simulate
19+
contrast, never change. You still have operations that simulate
2020
additions, removals, or updates, but those operations will in each
2121
case return a new collection and leave the old collection unchanged.
2222

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

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

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

0 commit comments

Comments
 (0)