diff --git a/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md b/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md index 38dccd4177..5e035fc177 100644 --- a/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md +++ b/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md @@ -76,6 +76,6 @@ object StringIteratorTest extends App { iter foreach println } ``` -The new class `RichStringIter` has `StringIterator` as a superclass and `RichIterator` as a mixin. +The new class `Iter` has `StringIterator` as a superclass and `RichIterator` as a mixin. With single inheritance we would not be able to achieve this level of flexibility.