aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-05-20 08:32:02 +0200
committerMartin Odersky <odersky@gmail.com>2016-05-23 12:01:39 +0200
commit624561d164c72adfb1a65a2bf55103fe84765915 (patch)
tree177f921a2669c5da584f9642e68e5d548fcbd721 /src
parent7f52d17f204536611b545748da815d96bc5d71cf (diff)
downloaddotty-624561d164c72adfb1a65a2bf55103fe84765915.tar.gz
dotty-624561d164c72adfb1a65a2bf55103fe84765915.tar.bz2
dotty-624561d164c72adfb1a65a2bf55103fe84765915.zip
Further improve doc comment
Diffstat (limited to 'src')
-rw-r--r--src/dotty/annotation/internal/Child.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dotty/annotation/internal/Child.scala b/src/dotty/annotation/internal/Child.scala
index 4f3ceb6c0..9295de73e 100644
--- a/src/dotty/annotation/internal/Child.scala
+++ b/src/dotty/annotation/internal/Child.scala
@@ -9,7 +9,8 @@ import scala.annotation.Annotation
* case class B() extends A
* case class C() extends A
*
- * Then `A` would carry the annotations `@Child[B] @Child[C]` where
- * `B`, `C` are TypeRefs.
+ * Then the class symbol `A` would carry the annotations
+ * `@Child[Bref] @Child[Cref]` where `Bref`, `Cref` are TypeRefs
+ * referring to the class symbols of `B` and `C`
*/
class Child[T] extends Annotation