summaryrefslogtreecommitdiff
path: root/test/disabled
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-06-30 22:55:28 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-06-30 22:55:28 +0100
commit3fc4dd8b9656cf7e2947a4b0be2b0aab7261bd22 (patch)
tree83d2d025881074b48638f1a87b1eea9ad4e0840b /test/disabled
parentc8fbc41631da0a860f749479a610312814c0e88f (diff)
downloadscala-3fc4dd8b9656cf7e2947a4b0be2b0aab7261bd22.tar.gz
scala-3fc4dd8b9656cf7e2947a4b0be2b0aab7261bd22.tar.bz2
scala-3fc4dd8b9656cf7e2947a4b0be2b0aab7261bd22.zip
Fix 27 typos (p-r)
Diffstat (limited to 'test/disabled')
-rw-r--r--test/disabled/pos/spec-List.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/disabled/pos/spec-List.scala b/test/disabled/pos/spec-List.scala
index b31e035c1b..6bed08ae8a 100644
--- a/test/disabled/pos/spec-List.scala
+++ b/test/disabled/pos/spec-List.scala
@@ -438,7 +438,7 @@ case object Nil extends List[Nothing] {
throw new NoSuchElementException("head of empty list")
override def tail: List[Nothing] =
throw new NoSuchElementException("tail of empty list")
- // Removal of equals method here might lead to an infinite recusion similar to IntMap.equals.
+ // Removal of equals method here might lead to an infinite recursion similar to IntMap.equals.
override def equals(that: Any) = that match {
case that1: Seq[_] => that1.isEmpty
case _ => false