summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@gmail.com>2012-10-11 16:42:46 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-10-11 20:32:38 +0200
commit8989ce7c22b8a7329c1f3b770c9b2f6a32e04709 (patch)
tree0cb030ab0f4dadf7249adf34d2cfcb0c6fbdf882
parente95a00992599f59f7c74bcc171bb290f859ab848 (diff)
downloadscala-8989ce7c22b8a7329c1f3b770c9b2f6a32e04709.tar.gz
scala-8989ce7c22b8a7329c1f3b770c9b2f6a32e04709.tar.bz2
scala-8989ce7c22b8a7329c1f3b770c9b2f6a32e04709.zip
Moved @contentDiagram in Symbols
-rw-r--r--src/reflect/scala/reflect/api/Symbols.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reflect/scala/reflect/api/Symbols.scala b/src/reflect/scala/reflect/api/Symbols.scala
index d59ca561a2..993cbd97a5 100644
--- a/src/reflect/scala/reflect/api/Symbols.scala
+++ b/src/reflect/scala/reflect/api/Symbols.scala
@@ -11,6 +11,8 @@ package api
* to obtain the symbol that represents their declaration. During the typechecking phase, the compiler looks up the
* symbol based on the name and scope and sets the [[Trees.SymTreeApi.symbol `symbol` field]] of tree nodes.
*
+ * @contentDiagram hideNodes "*Api"
+ *
* @see [[http://docs.scala-lang.org/overviews/reflection/overview.html]]
*
* The Reflection Guide provides more details on symbol usage and attached intricacies.
@@ -18,8 +20,6 @@ package api
* @define SYMACCESSORS Class [[Symbol]] defines `isXXX` test methods such as `isPublic` or `isFinal`, `params` and
* `returnType` methods for method symbols, `baseClasses` for class symbols and so on. Some of these methods don't
* make sense for certain subclasses of `Symbol` and return `NoSymbol`, `Nil` or other empty values.
- *
- * @contentDiagram hideNodes "*Api"
*/
trait Symbols { self: Universe =>