summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-05-01 19:52:42 +0000
committermichelou <michelou@epfl.ch>2007-05-01 19:52:42 +0000
commitb5adf7938c6fe1e6b1d84c0a45e8eed9b02cd825 (patch)
tree7cdffc692529ca2f4d58f608551f5d88a9c4c46f
parent8feb3e75bc95a8b9544aed56f9ecbff7c322c10f (diff)
downloadscala-b5adf7938c6fe1e6b1d84c0a45e8eed9b02cd825.tar.gz
scala-b5adf7938c6fe1e6b1d84c0a45e8eed9b02cd825.tar.bz2
scala-b5adf7938c6fe1e6b1d84c0a45e8eed9b02cd825.zip
corrected typo
-rw-r--r--test/files/run/iterators.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/iterators.scala b/test/files/run/iterators.scala
index ff61ccb3a5..0e5981b5ce 100644
--- a/test/files/run/iterators.scala
+++ b/test/files/run/iterators.scala
@@ -38,7 +38,7 @@ object Test {
val r2 = Iterator.range(0, 10, 2)
val xs2 = List(r2 contains 5, r2 contains 6)
val r3 = Iterator.range(0, 10, 11)
- val xs2 = List(r2 contains 5, r2 contains 6)
+ val xs3 = List(r3 contains 5, r3 contains 6)
// 2 + 1 + 0
trues(xs1) + trues(xs2) + trues(xs3)
}