summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2015-07-20 14:24:33 -0400
committerSeth Tisue <seth@tisue.net>2015-07-20 14:24:33 -0400
commit62e915decc3e4caf01a9d19392c6adbdf6b55154 (patch)
treeb8173fd13d07a235480087c740283d442c00356e /test/files/pos
parentaed140ba86b33f1b842313cbfd36e76e2f074d5c (diff)
parent3819d0c20084997ad56432f3475fbe4adeb9d6d4 (diff)
downloadscala-62e915decc3e4caf01a9d19392c6adbdf6b55154.tar.gz
scala-62e915decc3e4caf01a9d19392c6adbdf6b55154.tar.bz2
scala-62e915decc3e4caf01a9d19392c6adbdf6b55154.zip
Merge pull request #4631 from janekdb/2.11.x-typos-t-v
Fix 23 typos (t-v)
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6089b.scala2
-rw-r--r--test/files/pos/t7689.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t6089b.scala b/test/files/pos/t6089b.scala
index ff7ca157eb..040987413e 100644
--- a/test/files/pos/t6089b.scala
+++ b/test/files/pos/t6089b.scala
@@ -1,5 +1,5 @@
// this crazy code simply tries to nest pattern matches so that the last call is in a tricky-to-determine
-// tail position (my initial tightenign of tailpos detection for SI-6089 ruled this out)
+// tail position (my initial tightening of tailpos detection for SI-6089 ruled this out)
class BKTree {
@annotation.tailrec
final def -?-[AA](a: AA): Boolean = this match {
diff --git a/test/files/pos/t7689.scala b/test/files/pos/t7689.scala
index 022e7ab7a0..72cca99bc0 100644
--- a/test/files/pos/t7689.scala
+++ b/test/files/pos/t7689.scala
@@ -2,6 +2,6 @@ object A {
// The default getter must have an explicit return type (List[_] => Int)
// This wasn't happening since e28c3edda4. That commit encoded upper/lower
// bounds of Any/Nothing as EmptyTree, which were triggering an .isEmpty
- // check in Namers#TypeTreeSubstitutor
+ // check in Namers#TypeTreeSubstituter
def x(f: List[_] => Int = _ => 3) = 9
}