summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/reify/Reifier.scala
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-04-17 14:07:58 -0700
committerSom Snytt <som.snytt@gmail.com>2013-04-17 21:47:51 -0700
commitfecc7e04b77859b4cbc61c517453446619549e66 (patch)
treeeb0321570d932cad08cc6d16535c3b71ef51f48e /src/compiler/scala/reflect/reify/Reifier.scala
parent3f0a90bd53cd1fc85891cf2673318c3a91f713bc (diff)
downloadscala-fecc7e04b77859b4cbc61c517453446619549e66.tar.gz
scala-fecc7e04b77859b4cbc61c517453446619549e66.tar.bz2
scala-fecc7e04b77859b4cbc61c517453446619549e66.zip
SI-7376 Additional trivial Scaladoc format corrections
Horizontal rule is ---- not ==== (which means header). Sample dollars must be escaped.
Diffstat (limited to 'src/compiler/scala/reflect/reify/Reifier.scala')
-rw-r--r--src/compiler/scala/reflect/reify/Reifier.scala23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/compiler/scala/reflect/reify/Reifier.scala b/src/compiler/scala/reflect/reify/Reifier.scala
index 11857e2172..74949fce6d 100644
--- a/src/compiler/scala/reflect/reify/Reifier.scala
+++ b/src/compiler/scala/reflect/reify/Reifier.scala
@@ -8,8 +8,9 @@ import scala.reflect.reify.utils.Utils
/** Given a tree or a type, generate a tree that when executed at runtime produces the original tree or type.
* See more info in the comments to `reify` in scala.reflect.api.Universe.
*
- * @author Martin Odersky
- * @version 2.10
+ * @author Martin Odersky
+ * @version 2.10
+ * @since 2.10
*/
abstract class Reifier extends States
with Phases
@@ -31,20 +32,20 @@ abstract class Reifier extends States
this.asInstanceOf[Reifier { val global: Reifier.this.global.type }]
override def hasReifier = true
- /**
- * For `reifee` and other reification parameters, generate a tree of the form
- *
+ /** For `reifee` and other reification parameters, generate a tree of the form
+ * {{{
* {
- * val $u: universe.type = <[ universe ]>
- * val $m: $u.Mirror = <[ mirror ]>
- * $u.Expr[T](rtree) // if data is a Tree
- * $u.TypeTag[T](rtree) // if data is a Type
+ * val \$u: universe.type = <[ universe ]>
+ * val \$m: \$u.Mirror = <[ mirror ]>
+ * \$u.Expr[T](rtree) // if data is a Tree
+ * \$u.TypeTag[T](rtree) // if data is a Type
* }
+ * }}}
*
* where
*
- * - `universe` is the tree that represents the universe the result will be bound to
- * - `mirror` is the tree that represents the mirror the result will be initially bound to
+ * - `universe` is the tree that represents the universe the result will be bound to.
+ * - `mirror` is the tree that represents the mirror the result will be initially bound to.
* - `rtree` is code that generates `reifee` at runtime.
* - `T` is the type that corresponds to `data`.
*