diff --git a/src/rustc-driver-interacting-with-the-ast.md b/src/rustc-driver-interacting-with-the-ast.md index faf0f151..51d5cb6d 100644 --- a/src/rustc-driver-interacting-with-the-ast.md +++ b/src/rustc-driver-interacting-with-the-ast.md @@ -1,4 +1,4 @@ -# Interacting with the AST +# Example: Type checking through `rustc_interface` `rustc_interface` allows you to interact with Rust code at various stages of compilation. @@ -38,4 +38,4 @@ rustc_interface::run_compiler(config, |compiler| { }) }); }); -``` \ No newline at end of file +```