@@ -46,7 +46,7 @@ abstract class TreeMapWithStages(@constructorOnly ictx: Context) extends TreeMap
46
46
/** The quotation level of the definition of the locally defined symbol */
47
47
protected def levelOf (sym : Symbol ): Int = levelOfMap.getOrElse(sym, 0 )
48
48
49
- /** Localy defined symbols seen so far by `StagingTransformer.transform` */
49
+ /** Locally defined symbols seen so far by `StagingTransformer.transform` */
50
50
protected def localSymbols : List [Symbol ] = enteredSyms
51
51
52
52
/** If we are inside a quote or a splice */
@@ -74,7 +74,7 @@ abstract class TreeMapWithStages(@constructorOnly ictx: Context) extends TreeMap
74
74
/** Transform the expression splice `splice` which contains the spliced `body`. */
75
75
protected def transformSplice (body : Tree , splice : Apply )(using Context ): Tree
76
76
77
- /** Transform the typee splice `splice` which contains the spliced `body`. */
77
+ /** Transform the type splice `splice` which contains the spliced `body`. */
78
78
protected def transformSpliceType (body : Tree , splice : Select )(using Context ): Tree
79
79
80
80
override def transform (tree : Tree )(using Context ): Tree =
@@ -109,7 +109,7 @@ abstract class TreeMapWithStages(@constructorOnly ictx: Context) extends TreeMap
109
109
try dropEmptyBlocks(quotedTree) match {
110
110
case Spliced (t) =>
111
111
// '{ $x } --> x
112
- // and adapt the refinment of `Quotes { type tasty : ... } ?=> Expr[T]`
112
+ // and adapt the refinement of `Quotes { type reflect : ... } ?=> Expr[T]`
113
113
transform(t).asInstance(tree.tpe)
114
114
case _ => transformQuotation(quotedTree, tree)
115
115
}
0 commit comments