summaryrefslogtreecommitdiff
path: root/src/library/scala/annotation/elidable.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-26 14:03:24 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-26 14:03:24 +0000
commit6441087c31b9f550bb36d6afac4cfc7d4292b7cd (patch)
treebd2ab9f8d5c013b3f90460e6ea621d13208c5dad /src/library/scala/annotation/elidable.scala
parent6975d16800499815a07c80c6d4fe85c2de693d96 (diff)
downloadscala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.tar.gz
scala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.tar.bz2
scala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.zip
Fixed a number of faulty Scaladoc comments in l...
Fixed a number of faulty Scaladoc comments in library and compiler sources. No review.
Diffstat (limited to 'src/library/scala/annotation/elidable.scala')
-rw-r--r--src/library/scala/annotation/elidable.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/annotation/elidable.scala b/src/library/scala/annotation/elidable.scala
index 4f29c8f2ab..44ac7f050e 100644
--- a/src/library/scala/annotation/elidable.scala
+++ b/src/library/scala/annotation/elidable.scala
@@ -17,14 +17,14 @@ import java.util.logging.Level
* to scalac. Methods marked elidable will be omitted from
* generated code if the priority given the annotation is lower
* than to the command line argument. Examples:
- *
+ * {{{
* import annotation.elidable._
*
* @elidable(WARNING) def foo = log("foo")
* @elidable(FINE) def bar = log("bar")
*
* scalac -Xelide-methods-below=1000
- *
+ * }}}
* @since 2.8
*/
final class elidable(final val level: Int) extends StaticAnnotation {}