summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-10-10 15:55:43 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-10-10 15:55:43 +0200
commit68b798e3ec9ae9441d19bd06a040c869c494f159 (patch)
treecf9bb3868542eb8efbc93d421388573e3b7f8f08
parenta3f30b567caa1437a6005b51e1c9b7b988704bdb (diff)
downloadscala-68b798e3ec9ae9441d19bd06a040c869c494f159.tar.gz
scala-68b798e3ec9ae9441d19bd06a040c869c494f159.tar.bz2
scala-68b798e3ec9ae9441d19bd06a040c869c494f159.zip
SI-6453 Documentation links for @switch are broken
-rw-r--r--src/library/scala/annotation/switch.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/library/scala/annotation/switch.scala b/src/library/scala/annotation/switch.scala
index a867783455..20056bc03c 100644
--- a/src/library/scala/annotation/switch.scala
+++ b/src/library/scala/annotation/switch.scala
@@ -9,8 +9,7 @@ package scala.annotation
/** An annotation to be applied to a match expression. If present,
* the compiler will verify that the match has been compiled to a
- * [[http://docs.oracle.com/javase/specs/jvms/se5.0/html/Instructions2.doc14.html tableswitch]]
- * or [[http://docs.oracle.com/javase/specs/jvms/se5.0/html/Instructions2.doc8.html#lookupswitch lookupswitch]]
+ * [[http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-3.html#jvms-3.10 tableswitch or lookupswitch]]
* and issue an error if it instead compiles into a series of conditional expressions.
* Example usage:
{{{