summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-12-01 18:05:54 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-12-01 18:05:54 -0800
commit56b9f068f144dca67685dc884420ca67251df4c4 (patch)
tree4f8e59379eea61259c5248ab1e2871c22a26c6bc
parent01a481ea09a3adb4b79c4ca80cffe61048028ccd (diff)
parent3ccf8e19184980fd46132d3b88a5b3affbfff287 (diff)
downloadscala-56b9f068f144dca67685dc884420ca67251df4c4.tar.gz
scala-56b9f068f144dca67685dc884420ca67251df4c4.tar.bz2
scala-56b9f068f144dca67685dc884420ca67251df4c4.zip
Merge pull request #4174 from kanielc/SI-8995
SI-8995: Fix broken link in error message
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Contexts.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
index b13f9e94cc..8c2bc316ec 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
@@ -104,7 +104,7 @@ trait Contexts { self: Analyzer =>
// there must be a scala.xml package when xml literals were parsed in this unit
if (unit.hasXml && ScalaXmlPackage == NoSymbol)
- reporter.error(unit.firstXmlPos, "To compile XML syntax, the scala.xml package must be on the classpath.\nPlease see http://docs.scala-lang.org/overviews/core/scala-2.11.html#scala-xml.")
+ reporter.error(unit.firstXmlPos, "To compile XML syntax, the scala.xml package must be on the classpath.\nPlease see https://github.com/scala/scala-xml for details.")
// scala-xml needs `scala.xml.TopScope` to be in scope globally as `$scope`
// We detect `scala-xml` by looking for `scala.xml.TopScope` and