Skip to content

Commit 43bf3d7

Browse files
committed
sembr src/syntax-intro.md
1 parent 3382cad commit 43bf3d7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/syntax-intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
Working directly with source code is very inconvenient and error-prone.
44
Thus, before we do anything else, we convert raw source code into an
5-
[Abstract Syntax Tree (AST)][AST]. It turns out that doing this involves a lot of work,
5+
[Abstract Syntax Tree (AST)][AST].
6+
It turns out that doing this involves a lot of work,
67
including [lexing, parsing], [macro expansion], [name resolution], conditional
78
compilation, [feature-gate checking], and [validation] of the [AST].
89
In this chapter, we take a look at all of these steps.

0 commit comments

Comments
 (0)