summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/Iterable.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/Iterable.scala')
-rwxr-xr-xsrc/library/scalax/collection/Iterable.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scalax/collection/Iterable.scala b/src/library/scalax/collection/Iterable.scala
index fa0dd34ecc..08bf338290 100755
--- a/src/library/scalax/collection/Iterable.scala
+++ b/src/library/scalax/collection/Iterable.scala
@@ -122,11 +122,11 @@ object Iterable extends covariant.IterableFactory[Iterable] {
implicit def pairIterableWrapper[C[+B] <: Iterable[B], A1, A2](seq: C[(A1, A2)]) =
new PairIterableOps[C, A1, A2](seq)
- type View[+UC[+B] <: Sequence[B], +A] = covariant.IterableView[UC, A]
+ type View[+UC[B] <: Sequence[B], A] = IterableView[UC, A]
/** @deprecated use View instead
*/
- @deprecated type Projection[+A] = View[C, A] forSome { type C[B] <: Iterable[B] }
+ @deprecated type Projection[A] = View[C, A] forSome { type C[B] <: Iterable[B] }
/** The minimum element of a non-empty sequence of ordered elements
* @deprecated use seq.min instead