@@ -197,7 +197,7 @@ trait QuotesAndSplices {
197197 )
198198
199199 /** Split a typed quoted pattern is split into its type bindings, pattern expression and inner patterns.
200- * Type definitions with `@patternBindHole ` will be inserted in the pattern expression for each type binding.
200+ * Type definitions with `@patternType ` will be inserted in the pattern expression for each type binding.
201201 *
202202 * A quote pattern
203203 * ```
@@ -208,7 +208,7 @@ trait QuotesAndSplices {
208208 * (
209209 * Map(<$t>: Symbol -> <$t @ _>: Bind),
210210 * <'{
211- * @scala.internal.Quoted.patternBindHole type $t
211+ * @scala.internal.Quoted.patternType type $t
212212 * scala.internal.Quoted.patternHole[List[$t]]
213213 * }>: Tree,
214214 * List(<ls: Expr[List[$t]]>: Tree)
@@ -366,7 +366,7 @@ trait QuotesAndSplices {
366366 * ```
367367 *
368368 * For each type splice we will create a new type binding in the pattern match ($t @ _ in this case)
369- * and a corresponding type in the quoted pattern as a hole (@patternBindHole type $t in this case).
369+ * and a corresponding type in the quoted pattern as a hole (@patternType type $t in this case).
370370 * All these generated types are inserted at the start of the quoted code.
371371 *
372372 * After typing the tree will resemble
@@ -388,7 +388,7 @@ trait QuotesAndSplices {
388388 * (implicit t @ _, ls @ _: Expr[List[$t]]) // from the spliced patterns
389389 * )(
390390 * '{ // Runtime quote Matcher.unapply uses to mach against. Expression directly inside the quoted pattern without the splices
391- * @scala.internal.Quoted.patternBindHole type $t
391+ * @scala.internal.Quoted.patternType type $t
392392 * scala.internal.Quoted.patternHole[List[$t]]
393393 * },
394394 * true, // If there is at least one type splice. Used to instantiate the context with or without GADT constraints
0 commit comments