summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-08-07 15:07:24 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-08-07 15:07:24 -0700
commitc957bf808352364467243875b84b1b7d103caace (patch)
treeeaed9ae5f33cc4909912a5e8219f771fff791b91 /src/library
parent6b3d36bc19cc82350c3754b0b91fb074a443d9bc (diff)
parent788478d3ab7dbb6386932eb8cb58dfcc5ee950b1 (diff)
downloadscala-c957bf808352364467243875b84b1b7d103caace.tar.gz
scala-c957bf808352364467243875b84b1b7d103caace.tar.bz2
scala-c957bf808352364467243875b84b1b7d103caace.zip
Merge pull request #1080 from scalamacros/ticket/6186
SI-6186 TypeTags no longer supported in macros
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/reflect/base/Universe.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/reflect/base/Universe.scala b/src/library/scala/reflect/base/Universe.scala
index 6f37214fa8..f098876c18 100644
--- a/src/library/scala/reflect/base/Universe.scala
+++ b/src/library/scala/reflect/base/Universe.scala
@@ -46,8 +46,8 @@ abstract class Universe extends Symbols
* def macroImpl[T](c: Context) = {
* ...
* // T here is just a type parameter, so the tree produced by reify won't be of much use in a macro expansion
- * // however, if T were annotated with c.TypeTag (which would declare an implicit parameter for macroImpl)
- * // then reification would subtitute T with the TypeTree that was used in a TypeApply of this particular macro invocation
+ * // however, if T were annotated with c.AbsTypeTag (which would declare an implicit parameter for macroImpl)
+ * // then reification would substitute T with the TypeTree that was used in a TypeApply of this particular macro invocation
* val factory = c.reify{ new Queryable[T] }
* ...
* }