From 44a500fcbb6839603a74d28fbee52a9ff96d94e1 Mon Sep 17 00:00:00 2001 From: TATSUNO Yasuhiro Date: Mon, 4 Jan 2021 16:30:35 +0900 Subject: [PATCH] Fix names of View's sub classes --- _overviews/core/custom-collections.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_overviews/core/custom-collections.md b/_overviews/core/custom-collections.md index 6720bcf5de..ab0432376a 100644 --- a/_overviews/core/custom-collections.md +++ b/_overviews/core/custom-collections.md @@ -596,11 +596,11 @@ this is why we always get a `Vector` as a result. // symbolic alias for `concat` @inline final def ++ (suffix: IterableOnce[Base]): RNA2 = concat(suffix) def appended(base: Base): RNA2 = - fromSpecific(new View.Append(this, base)) + fromSpecific(new View.Appended(this, base)) def appendedAll(suffix: IterableOnce[Base]): RNA2 = concat(suffix) def prepended(base: Base): RNA2 = - fromSpecific(new View.Prepend(base, this)) + fromSpecific(new View.Prepended(base, this)) def prependedAll(prefix: IterableOnce[Base]): RNA2 = fromSpecific(prefix.iterator ++ iterator) def map(f: Base => Base): RNA2 =