Skip to content

Commit 7007a4f

Browse files
authored
Merge pull request #1884 from exoego/patch-3
Fix names of View's sub classes
2 parents 5599069 + 44a500f commit 7007a4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_overviews/core/custom-collections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,11 +596,11 @@ this is why we always get a `Vector` as a result.
596596
// symbolic alias for `concat`
597597
@inline final def ++ (suffix: IterableOnce[Base]): RNA2 = concat(suffix)
598598
def appended(base: Base): RNA2 =
599-
fromSpecific(new View.Append(this, base))
599+
fromSpecific(new View.Appended(this, base))
600600
def appendedAll(suffix: IterableOnce[Base]): RNA2 =
601601
concat(suffix)
602602
def prepended(base: Base): RNA2 =
603-
fromSpecific(new View.Prepend(base, this))
603+
fromSpecific(new View.Prepended(base, this))
604604
def prependedAll(prefix: IterableOnce[Base]): RNA2 =
605605
fromSpecific(prefix.iterator ++ iterator)
606606
def map(f: Base => Base): RNA2 =

0 commit comments

Comments
 (0)