summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorDenton Cockburn <kanielc@gmail.com>2014-11-30 08:11:33 -0500
committerDenton Cockburn <kanielc@gmail.com>2014-11-30 08:12:59 -0500
commit3ccf8e19184980fd46132d3b88a5b3affbfff287 (patch)
treea65e8f6c15611b98c42648c68a1982d01b7e818b /src/compiler
parentd34388c1e8fad289a6198b127c6ae92c296d9246 (diff)
downloadscala-3ccf8e19184980fd46132d3b88a5b3affbfff287.tar.gz
scala-3ccf8e19184980fd46132d3b88a5b3affbfff287.tar.bz2
scala-3ccf8e19184980fd46132d3b88a5b3affbfff287.zip
SI-8995: Fix broken link in error message
Change broken link to scala-xml documentation by pointing instead to scala-xml project.
Diffstat (limited to 'src/compiler')
-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