diff options
Diffstat (limited to 'InternalDocs/compiler.md')
-rw-r--r-- | InternalDocs/compiler.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index 8ca19a42b91..02bbdf6071f 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -505,8 +505,8 @@ Important files * [Python/ast.c](../Python/ast.c): Used for validating the AST. - * [Python/ast_opt.c](../Python/ast_opt.c): - Optimizes the AST. + * [Python/ast_preprocess.c](../Python/ast_preprocess.c): + Preprocesses the AST before compiling. * [Python/ast_unparse.c](../Python/ast_unparse.c): Converts the AST expression node back into a string (for string annotations). |