summaryrefslogtreecommitdiff
path: root/test/files/run/t0631.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0631.scala')
-rw-r--r--test/files/run/t0631.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t0631.scala b/test/files/run/t0631.scala
index c401ed31cb..8d672574ec 100644
--- a/test/files/run/t0631.scala
+++ b/test/files/run/t0631.scala
@@ -11,6 +11,6 @@ object Test extends App {
case class Bar(x: Foo)
val b = new Bar(new Foo)
- // this should not call Foo.equals, but simply compare object identiy of b
+ // this should not call Foo.equals, but simply compare object identity of b
println(b == b)
}