From 60005c5b3bf5724a3610979ef3ee992271c91f30 Mon Sep 17 00:00:00 2001 From: Travis Date: Sat, 2 Jul 2016 16:09:35 -0700 Subject: [PATCH 1/2] Fixed wording and comment spacing --- overviews/collections/overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overviews/collections/overview.md b/overviews/collections/overview.md index 5d2e4e141b..baa7c48d41 100644 --- a/overviews/collections/overview.md +++ b/overviews/collections/overview.md @@ -85,11 +85,11 @@ names without needing an import. An example is the `List` type, which can be accessed alternatively as scala.collection.immutable.List // that's where it is defined - scala.List // via the alias in the scala package + scala.List // via the alias in the scala package List // because scala._ // is always automatically imported -Other types so aliased are +Other types aliased are [Traversable](http://www.scala-lang.org/api/current/scala/collection/Traversable.html), [Iterable](http://www.scala-lang.org/api/current/scala/collection/Iterable.html), [Seq](http://www.scala-lang.org/api/current/scala/collection/Seq.html), [IndexedSeq](http://www.scala-lang.org/api/current/scala/collection/IndexedSeq.html), [Iterator](http://www.scala-lang.org/api/current/scala/collection/Iterator.html), [Stream](http://www.scala-lang.org/api/current/scala/collection/immutable/Stream.html), [Vector](http://www.scala-lang.org/api/current/scala/collection/immutable/Vector.html), [StringBuilder](http://www.scala-lang.org/api/current/scala/collection/mutable/StringBuilder.html), and [Range](http://www.scala-lang.org/api/current/scala/collection/immutable/Range.html). The following figure shows all collections in package From 0a906da7e2c51dd151310d495005c50f5188f78f Mon Sep 17 00:00:00 2001 From: Travis Date: Sat, 2 Jul 2016 16:16:34 -0700 Subject: [PATCH 2/2] Fixed comment spacing --- overviews/collections/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviews/collections/overview.md b/overviews/collections/overview.md index baa7c48d41..8b8bb56f6e 100644 --- a/overviews/collections/overview.md +++ b/overviews/collections/overview.md @@ -86,7 +86,7 @@ can be accessed alternatively as scala.collection.immutable.List // that's where it is defined scala.List // via the alias in the scala package - List // because scala._ + List // because scala._ // is always automatically imported Other types aliased are