summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/Predef.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala
index 511e5b842a..569157de20 100644
--- a/src/library/scala/Predef.scala
+++ b/src/library/scala/Predef.scala
@@ -484,7 +484,7 @@ private[scala] abstract class LowPriorityImplicits {
// These eight implicits exist solely to exclude Null from the domain of
// the boxed types, so that e.g. "var x: Int = null" is a compile time
// error rather than a delayed null pointer exception by way of the
- // conversion from java.lang.Integer. If defined in the same file as
+ // conversion from java.lang.Integer. If defined in the same template as
// Integer2int, they would have higher priority because Null is a subtype
// of Integer. We balance that out and create conflict by moving the
// definition into the superclass.
@@ -531,4 +531,3 @@ private[scala] abstract class LowPriorityImplicits {
def apply() = immutable.IndexedSeq.newBuilder[T]
}
}
-