use actual names (#1594)
This commit is contained in:
parent
9f02d33a1c
commit
55c5b384b6
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue