summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/generic/covartest/SequenceFactory.scala')
-rwxr-xr-xsrc/library/scalax/collection/generic/covartest/SequenceFactory.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scalax/collection/generic/covartest/SequenceFactory.scala b/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
index 1fb85d02db..eb6c093bff 100755
--- a/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
+++ b/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
@@ -7,5 +7,5 @@ trait SequenceFactory[CC[A] <: Sequence[A]] extends IterableFactory[CC] {
* @param x the selector value
* @return sequence wrapped in an option, if this is a Sequence, otherwise none
*/
- def unapplySequence[A](x: CC[A]): Some[CC[A]] = Some(x)
+ def unapplySeq[A](x: CC[A]): Some[CC[A]] = Some(x)
}