From 46f1c6043bfb474c0c0dfe4baa5727f60f69e50a Mon Sep 17 00:00:00 2001 From: Vince Date: Fri, 18 Dec 2020 01:18:05 -0500 Subject: [PATCH] Refer to template trait to match code example --- _overviews/core/architecture-of-scala-213-collections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/core/architecture-of-scala-213-collections.md b/_overviews/core/architecture-of-scala-213-collections.md index 7e14fd6248..2aa2c6a15b 100644 --- a/_overviews/core/architecture-of-scala-213-collections.md +++ b/_overviews/core/architecture-of-scala-213-collections.md @@ -329,7 +329,7 @@ trait IterableFactory[+CC[_]] { Last but not least, as explained in the above sections, since we have four branches of template traits, we have four corresponding branches of factories. For instance, -here are the relevant parts of code of the `map` operation implementation in `Map`: +here are the relevant parts of code of the `map` operation implementation in `MapOps`: ~~~ scala trait MapOps[K, +V, +CC[_, _], +C]