Skip to content

Commit d727a7b

Browse files
committed
Standardize terminology
1 parent b0408eb commit d727a7b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/docs/reference/tasty-reflect.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you are writing macros, please first read [Principled Meta-programming](./pri
1111
You may find all you need without using TASTy Reflect.
1212

1313

14-
## From quotes and splices to TASTs and back
14+
## From quotes and splices to TASTs Reflect trees and back
1515

1616
`quoted.Expr` and `quoted.Type` are only meant for generative meta-programming, generation of code without inspecting the ASTs.
1717
[Principled Meta-programming](./principled-meta-programming.html) provides the guarantee that the generation of code will be type-correct.
@@ -56,9 +56,9 @@ The method `reflection.Term.reify[T]` provides a way to to go back to a `quoted.
5656
Note that the type must be set explicitly and that if it does not conform to it an exception will be thrown.
5757
In the code above we could have replaced `n.toExpr` by `xTree.reify[Int]`.
5858

59-
## ASTs of a TASTy file
59+
## Inspect a TASTy file
6060

61-
To inspect the TASTy trees of a TASTy file a consumer can be defined in the following way.
61+
To inspect the TASTy Reflect trees of a TASTy file a consumer can be defined in the following way.
6262

6363
```scala
6464
class Consumer extends TastyConsumer {
@@ -79,7 +79,7 @@ object Test {
7979
}
8080
```
8181

82-
## TASTy Reflect ASTs
82+
## TASTy Reflect API
8383

8484
TASTy Reflect provides the following types:
8585

0 commit comments

Comments
 (0)