use actual names (#1594)

This commit is contained in:
Tshepang Mbambo 2023-02-14 08:44:23 +02:00 committed by GitHub
parent 9f02d33a1c
commit 55c5b384b6
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@
- [Prologue](./part-3-intro.md) - [Prologue](./part-3-intro.md)
- [Command-line arguments](./cli.md) - [Command-line arguments](./cli.md)
- [The Rustc Driver and Interface](./rustc-driver.md) - [rustc_driver and rustc_interface](./rustc-driver.md)
- [Example: Type checking](./rustc-driver-interacting-with-the-ast.md) - [Example: Type checking](./rustc-driver-interacting-with-the-ast.md)
- [Example: Getting diagnostics](./rustc-driver-getting-diagnostics.md) - [Example: Getting diagnostics](./rustc-driver-getting-diagnostics.md)
- [Syntax and the AST](./syntax-intro.md) - [Syntax and the AST](./syntax-intro.md)

View File

@ -1,4 +1,4 @@
# The Rustc Driver and Interface # `rustc_driver` and `rustc_interface`
The [`rustc_driver`] is essentially `rustc`'s `main()` function. It acts as The [`rustc_driver`] is essentially `rustc`'s `main()` function. It acts as
the glue for running the various phases of the compiler in the correct order, the glue for running the various phases of the compiler in the correct order,