Skip to content

Commit 55298c5

Browse files
authored
Update macros.md
Added "in the standard output of the compiler process" as per Julien's suggestion to make it even clearer where the output from the println statement goes.
1 parent 5b343d6 commit 55298c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-macros/tutorial/macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A Scala expression with type `T` is represented by an instance of the type `scal
2020
We will dig into the details of the type `Expr[T]`, as well as the different ways of analyzing and constructing instances, when talking about [Quoted Code][quotes] and [Reflection][tasty].
2121
For now, it suffices to know that macros are metaprograms that manipulate expressions of type `Expr[T]`.
2222

23-
The following macro implementation prints the expression of the provided argument at compile-time:
23+
The following macro implementation prints the expression of the provided argument at compile-time in the standard output of the compiler process:
2424
```scala
2525
import scala.quoted.* // imports Quotes, Expr
2626

0 commit comments

Comments
 (0)