summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorGeorge Fraser <george.w.fraser@gmail.com>2020-04-01 10:53:26 -0700
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-04-01 20:09:08 -0500
commit6efc6bf7f9404700e6211cd99ebba061dac671b4 (patch)
treec54ba0b1e7234a789f68ac5bc4ff7ebd3963db28 /src/doc/rustc-dev-guide
parent9255b60054d9d35c3af5541936981f6c834556c6 (diff)
downloadrust-6efc6bf7f9404700e6211cd99ebba061dac671b4.tar.gz
rust-6efc6bf7f9404700e6211cd99ebba061dac671b4.zip
Update src/rustc-driver-interacting-with-the-ast.md
Co-Authored-By: Who? Me?! <mark-i-m@users.noreply.github.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/rustc-driver-interacting-with-the-ast.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/rustc-driver-interacting-with-the-ast.md b/src/doc/rustc-dev-guide/src/rustc-driver-interacting-with-the-ast.md
index faf0f151466..51d5cb6d30f 100644
--- a/src/doc/rustc-dev-guide/src/rustc-driver-interacting-with-the-ast.md
+++ b/src/doc/rustc-dev-guide/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
+```