Skip to content

Commit 80d5475

Browse files
committed
fix typo
1 parent 1413c3a commit 80d5475

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-macros/tutorial/macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ On the other hand, a macro executes user-written code that generates the code th
7272
Technically, compiling the inlined code `${ inspectCode('x) }` calls the method `inspectCode` _at compile time_ (through Java reflection), and the method `inspectCode` then executes as normal code.
7373

7474
To be able to execute `inspectCode`, we need to compile its source code first.
75-
As a technicaly consequence, we cannot define and use a macro in the **same class/file**.
75+
As a technical consequence, we cannot define and use a macro in the **same class/file**.
7676
However, it is possible to have the macro definition and its call in the **same project** as long as the implementation of the macro can be compiled first.
7777

7878
> ##### Suspended Files

0 commit comments

Comments
 (0)