summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/PhaseAssembly.scala
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-08-21 04:34:07 -0700
committerSom Snytt <som.snytt@gmail.com>2013-08-21 18:02:46 -0700
commit5edf50dd5f50d921311795dc614c3c25425c783a (patch)
treece9c3556354b9ae9f837746df752028b0fa1375c /src/compiler/scala/tools/nsc/PhaseAssembly.scala
parent1683c95e159006d40a8458d29ef266ca741752c7 (diff)
downloadscala-5edf50dd5f50d921311795dc614c3c25425c783a.tar.gz
scala-5edf50dd5f50d921311795dc614c3c25425c783a.tar.bz2
scala-5edf50dd5f50d921311795dc614c3c25425c783a.zip
SI-7622 Scaladoc and error message polish
Restores the verbiage "run right after".
Diffstat (limited to 'src/compiler/scala/tools/nsc/PhaseAssembly.scala')
-rw-r--r--src/compiler/scala/tools/nsc/PhaseAssembly.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/PhaseAssembly.scala b/src/compiler/scala/tools/nsc/PhaseAssembly.scala
index 45502a19d6..996f6efe55 100644
--- a/src/compiler/scala/tools/nsc/PhaseAssembly.scala
+++ b/src/compiler/scala/tools/nsc/PhaseAssembly.scala
@@ -150,7 +150,7 @@ trait PhaseAssembly {
} else if (sanity.length > 1) {
dump("phase-order")
val following = (sanity map (_.frm.phasename)).sorted mkString ","
- throw new FatalError(s"Phase ${sanity.head.to.phasename} has too many followers: $following; created phase-order.dot")
+ throw new FatalError(s"Multiple phases want to run right after ${sanity.head.to.phasename}; followers: $following; created phase-order.dot")
} else {
val promote = hl.to.before.filter(e => (!e.hard))