Skip to content

Commit 881542d

Browse files
nicolasstuckiadpi2
andauthored
Apply suggestions from code review
Co-Authored-By: Adrien Piquerez <[email protected]>
1 parent a328e98 commit 881542d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/macros.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ Here is an incomplete list of libraries that use Scala 2 macros and their migrat
1616

1717
### Before rewriting a macro
1818

19-
Before getting deep into reimplementing a macro your should check it can be supported using Scala 3 new features.
19+
Before getting deep into reimplementing a macro your should check if it can be supported using Scala 3 new features.
2020

2121
* Can I encode the logic of the macro using the new scala 3 features?
22-
* [List of Scala 3 featurs](http://dotty.epfl.ch/docs/reference/overview.html)
22+
* [List of Scala 3 features](http://dotty.epfl.ch/docs/reference/overview.html)
2323
* Can I use *match types* to reimplement the interface of my macro?
2424
* [Match Types](http://dotty.epfl.ch/docs/reference/new-types/match-types.html)
2525
* Can I use `inline` and the metaprogramming features in `scala.compiletime` to reimplement my logic?
2626
* [Inline](http://dotty.epfl.ch/docs/reference/metaprogramming/inline.html)
27-
* [scala.compiletime](http://dotty.epfl.ch/api/scala/compiletime/index.html)
28-
* Can I use the simpler and safer expression based macros to implemet my macro?
27+
* [`scala.compiletime`](http://dotty.epfl.ch/api/scala/compiletime/index.html)
28+
* Can I use the simpler and safer expression based macros to implement my macro?
2929
* [Simple macros](http://dotty.epfl.ch/docs/reference/metaprogramming/macros.html)
3030
* I really need to have access to the raw AST trees
3131
* [TASTy Reflect](http://dotty.epfl.ch/docs/reference/metaprogramming/tasty-reflect.html)

0 commit comments

Comments
 (0)