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]