summaryrefslogtreecommitdiff
path: root/test/files/run/t8010.scala
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-07-06 08:42:59 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-07-06 08:42:59 +0100
commitd2199c53788bec16101ec2c1048cfe4a6331a49b (patch)
tree82b94e5fb41bbb40af62127dbda5e312ac5228a0 /test/files/run/t8010.scala
parent8d119e61068811c6cf333dcfbbca0aed2f6fb4f8 (diff)
downloadscala-d2199c53788bec16101ec2c1048cfe4a6331a49b.tar.gz
scala-d2199c53788bec16101ec2c1048cfe4a6331a49b.tar.bz2
scala-d2199c53788bec16101ec2c1048cfe4a6331a49b.zip
Fix 25 typos (s)
Diffstat (limited to 'test/files/run/t8010.scala')
-rw-r--r--test/files/run/t8010.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t8010.scala b/test/files/run/t8010.scala
index 8636bbd12e..c78d45a43b 100644
--- a/test/files/run/t8010.scala
+++ b/test/files/run/t8010.scala
@@ -5,7 +5,7 @@ trait Base {
def bt(n: Int) = n
}
trait Derived extends Base {
- // was: double defintion error
+ // was: double definition error
override def t = 1 + super.t
override def t(n: Int) = 1 + super.t(n)
override def bt = 1 + super.bt
@@ -14,7 +14,7 @@ trait Derived extends Base {
object Test extends App {
val d = new Derived {}
- // not the focus of thie bug, but let's just check the runtime behaviour while we're here.
+ // not the focus of this bug, but let's just check the runtime behaviour while we're here.
assert(d.t == 2)
assert(d.t(1) == 2)
assert(d.bt == 3)