Skip to content

Commit 5bf11fc

Browse files
committed
Use metaprogramming instead of meta-programming in the document of QuoteContext.scala
1 parent 59da00c commit 5bf11fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src-bootstrapped/scala/quoted/QuoteContext.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import scala.quoted.show.SyntaxHighlight
55
/** Quotation context provided by a macro expansion or in the scope of `scala.quoted.run`.
66
* Used to perform all operations on quoted `Expr` or `Type`.
77
*
8-
* It contains the low-level Typed AST API `tasty` meta-programming API.
8+
* It contains the low-level Typed AST API `tasty` metaprogramming API.
99
* This API does not have the static type guarantiees that `Expr` and `Type` provide.
1010
*
1111
* @param tasty Typed AST API. Usage: `def f(qctx: QuoteContext) = { import qctx.tasty._; ... }`.
1212
*/
1313
trait QuoteContext { self =>
1414

15-
/** Low-level Typed AST API `tasty` meta-programming API.
15+
/** Low-level Typed AST API `tasty` metaprogramming API.
1616
* This API does not have the static type guarantiees that `Expr` and `Type` provide.
1717
*/
1818
val tasty: scala.tasty.Reflection

0 commit comments

Comments
 (0)