summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/mutable/VectorTemplate.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/generic/mutable/VectorTemplate.scala')
-rw-r--r--src/library/scalax/collection/generic/mutable/VectorTemplate.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scalax/collection/generic/mutable/VectorTemplate.scala b/src/library/scalax/collection/generic/mutable/VectorTemplate.scala
index aafee3ae3b..747cd01a4c 100644
--- a/src/library/scalax/collection/generic/mutable/VectorTemplate.scala
+++ b/src/library/scalax/collection/generic/mutable/VectorTemplate.scala
@@ -44,7 +44,7 @@ self =>
*/
override def view(from: Int, until: Int): VectorView[CC, A] = view.slice(from, until)
- def readOnly: Sequence[A] = new collection./*immutable.*/Vector[A] { //!!!
+ def readOnly: Sequence[A] = new collection.immutable.Vector[A] { //!!!
def length = self.length
def apply(idx : Int) = self.apply(idx)
def newBuilder[B]: Builder[CC, B] = self.newBuilder[B]