Skip to content

Commit 5b343d6

Browse files
boggyejulienrf
andauthored
Update _overviews/scala3-macros/tutorial/macros.md
Yes, I've noticed that as well. Even on this page sometimes "compile time" is used, in other places "compile-time". It's not used consistently. I am not sure which version is the correct one. It's one of those things. Co-authored-by: Julien Richard-Foy <[email protected]>
1 parent b7929a3 commit 5b343d6

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:
2424
```scala
2525
import scala.quoted.* // imports Quotes, Expr
2626

0 commit comments

Comments
 (0)