From 06c107faaf6bc5f045993a5bb3bc618c4be7d9eb Mon Sep 17 00:00:00 2001 From: Mario Galic Date: Fri, 23 Apr 2021 13:44:21 +0100 Subject: [PATCH] Update links to point to Scala 2.13 specific documents * This 2.13 document was pointing to older Scala introduction overview * Point "The Collections API" link which talks about common operations to more specific overviews/collections-2.13/trait-iterable.html --- _overviews/core/architecture-of-scala-213-collections.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_overviews/core/architecture-of-scala-213-collections.md b/_overviews/core/architecture-of-scala-213-collections.md index 2aa2c6a15b..4a49e9b42a 100644 --- a/_overviews/core/architecture-of-scala-213-collections.md +++ b/_overviews/core/architecture-of-scala-213-collections.md @@ -9,13 +9,13 @@ permalink: /overviews/core/:title.html This document describes the architecture of the Scala collections framework in detail. Compared to -[the Collections Introduction]({{ site.baseurl }}/overviews/collections/introduction.html) you +[the Collections Introduction]({{ site.baseurl }}/overviews/collections-2.13/introduction.html) you will find out more about the internal workings of the framework. You will also learn how this architecture helps you define your own collections in a few lines of code, while reusing the overwhelming part of collection functionality from the framework. -[The Collections API]({{ site.baseurl }}/overviews/collections/introduction.html) +[The Collections API]({{ site.baseurl }}/overviews/collections-2.13/trait-iterable.html) contains a large number of collection operations, which exist uniformly on many different collection implementations. Implementing every collection operation anew for