summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/SequenceFactory.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-12-09 17:40:50 +0000
committerMartin Odersky <odersky@gmail.com>2008-12-09 17:40:50 +0000
commitf83d8977544ec7fc3eed59e032e3705f30290c00 (patch)
tree2109641f8f4d84630726637ed480e0512c99e1d5 /src/library/scalax/collection/generic/SequenceFactory.scala
parent4d32e17513cf46b786eef8523653ac366c73a09c (diff)
downloadscala-f83d8977544ec7fc3eed59e032e3705f30290c00.tar.gz
scala-f83d8977544ec7fc3eed59e032e3705f30290c00.tar.bz2
scala-f83d8977544ec7fc3eed59e032e3705f30290c00.zip
updates to scalax collections and standard libr...
updates to scalax collections and standard library classes.
Diffstat (limited to 'src/library/scalax/collection/generic/SequenceFactory.scala')
-rwxr-xr-xsrc/library/scalax/collection/generic/SequenceFactory.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scalax/collection/generic/SequenceFactory.scala b/src/library/scalax/collection/generic/SequenceFactory.scala
index ee97c80c75..26818c49c9 100755
--- a/src/library/scalax/collection/generic/SequenceFactory.scala
+++ b/src/library/scalax/collection/generic/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)
}