summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-03-23 16:52:51 +0000
committerPaul Phillips <paulp@improving.org>2010-03-23 16:52:51 +0000
commit26a2abff274fb7facfadcf5e9b66d805a1b670b1 (patch)
tree14a800206ce137e9e1e7fd3e6fbf4aeb8703d307 /src/library
parent011377a2c73aee41673544479ee5db85fe143917 (diff)
downloadscala-26a2abff274fb7facfadcf5e9b66d805a1b670b1.tar.gz
scala-26a2abff274fb7facfadcf5e9b66d805a1b670b1.tar.bz2
scala-26a2abff274fb7facfadcf5e9b66d805a1b670b1.zip
Although it was working fine, a test case for @...
Although it was working fine, a test case for @elidable to make sure that state of affairs continues. No review.
Diffstat (limited to 'src/library')
-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 44ac7f050e..c75299e9fd 100644
--- a/src/library/scala/annotation/elidable.scala
+++ b/src/library/scala/annotation/elidable.scala
@@ -13,7 +13,7 @@ import java.util.logging.Level
/** An annotation for methods for which invocations might
* be removed in the generated code.
*
- * Behavior is influenced by passing -Xelide-level <arg>
+ * Behavior is influenced by passing -Xelide-below <arg>
* 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:
@@ -23,7 +23,7 @@ import java.util.logging.Level
* @elidable(WARNING) def foo = log("foo")
* @elidable(FINE) def bar = log("bar")
*
- * scalac -Xelide-methods-below=1000
+ * scalac -Xelide-below=1000
* }}}
* @since 2.8
*/