Skip to content

Commit 531f6eb

Browse files
committed
doc(tasty-inspect): re-phrasing
1 parent 8fe6471 commit 531f6eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/docs/reference/metaprogramming/tasty-inspect.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ libraryDependencies += "ch.epfl.lamp" %% "dotty-tasty-inspector" % scalaVersion.
99

1010
TASTy files contain the full typed tree of a class including source positions
1111
and documentation. This is ideal for tools that analyze or extract semantic
12-
information of the code. To avoid the hassle of working directly with the TASTy
12+
information from the code. To avoid the hassle of working directly with the TASTy
1313
file we provide the `TastyInspector` which loads the contents and exposes it
1414
through the TASTy reflect API.
1515

@@ -42,8 +42,8 @@ object Test {
4242
}
4343
```
4444

45-
Note that if we need to run the main (in an object called `Test`) after
46-
compilation we need make available the compiler to the runtime:
45+
Note that if we need to run the main (in the example below defined in an object called `Test`) after
46+
compilation we need to make the compiler available to the runtime:
4747

4848
```shell
4949
dotc -d out Test.scala

0 commit comments

Comments
 (0)