lower-case "Compiler" in headings, for consistency (and looks)

This commit is contained in:
Tshepang Mbambo 2023-02-17 03:40:54 +02:00
parent 279f92f50a
commit fcd74f99a3
6 changed files with 11 additions and 11 deletions

View File

@ -8,7 +8,7 @@
# Building and debugging `rustc` # Building and debugging `rustc`
- [How to Build and Run the Compiler](./building/how-to-build-and-run.md) - [How to build and run the compiler](./building/how-to-build-and-run.md)
- [Prerequisites](./building/prerequisites.md) - [Prerequisites](./building/prerequisites.md)
- [Suggested Workflows](./building/suggested.md) - [Suggested Workflows](./building/suggested.md)
- [Distribution artifacts](./building/build-install-distribution-artifacts.md) - [Distribution artifacts](./building/build-install-distribution-artifacts.md)
@ -25,7 +25,7 @@
- [Test headers](./tests/headers.md) - [Test headers](./tests/headers.md)
- [Performance testing](./tests/perf.md) - [Performance testing](./tests/perf.md)
- [Crater](./tests/crater.md) - [Crater](./tests/crater.md)
- [Debugging the Compiler](./compiler-debugging.md) - [Debugging the compiler](./compiler-debugging.md)
- [Using the tracing/logging instrumentation](./tracing.md) - [Using the tracing/logging instrumentation](./tracing.md)
- [Profiling the compiler](./profiling.md) - [Profiling the compiler](./profiling.md)
- [with the linux perf tool](./profiling/with_perf.md) - [with the linux perf tool](./profiling/with_perf.md)
@ -57,7 +57,7 @@
# High-level Compiler Architecture # High-level Compiler Architecture
- [Prologue](./part-2-intro.md) - [Prologue](./part-2-intro.md)
- [Overview of the Compiler](./overview.md) - [Overview of the compiler](./overview.md)
- [The compiler source code](./compiler-src.md) - [The compiler source code](./compiler-src.md)
- [Bootstrapping](./building/bootstrapping.md) - [Bootstrapping](./building/bootstrapping.md)
- [Queries: demand-driven compilation](./query.md) - [Queries: demand-driven compilation](./query.md)
@ -95,7 +95,7 @@
- [MIR construction](./mir/construction.md) - [MIR construction](./mir/construction.md)
- [MIR visitor and traversal](./mir/visitor.md) - [MIR visitor and traversal](./mir/visitor.md)
- [MIR passes: getting the MIR for a function](./mir/passes.md) - [MIR passes: getting the MIR for a function](./mir/passes.md)
- [Identifiers in the Compiler](./identifiers.md) - [Identifiers in the compiler](./identifiers.md)
- [Closure expansion](./closure.md) - [Closure expansion](./closure.md)
- [Inline assembly](./asm.md) - [Inline assembly](./asm.md)
@ -168,7 +168,7 @@
- [Profile-guided Optimization](./profile-guided-optimization.md) - [Profile-guided Optimization](./profile-guided-optimization.md)
- [LLVM Source-Based Code Coverage](./llvm-coverage-instrumentation.md) - [LLVM Source-Based Code Coverage](./llvm-coverage-instrumentation.md)
- [Sanitizers Support](./sanitizers.md) - [Sanitizers Support](./sanitizers.md)
- [Debugging Support in the Rust Compiler](./debugging-support-in-rustc.md) - [Debugging support in the Rust compiler](./debugging-support-in-rustc.md)
--- ---

View File

@ -1,4 +1,4 @@
# Bootstrapping the Compiler # Bootstrapping the compiler
<!-- toc --> <!-- toc -->
@ -90,7 +90,7 @@ because one must first build the new compiler with an older compiler
and then use that to build the new compiler with itself. and then use that to build the new compiler with itself.
For development, you usually only want the `stage1` compiler, For development, you usually only want the `stage1` compiler,
which you can build with `./x.py build library`. which you can build with `./x.py build library`.
See [Building the Compiler](./how-to-build-and-run.html#building-the-compiler). See [Building the compiler](./how-to-build-and-run.html#building-the-compiler).
### Stage 3 ### Stage 3

View File

@ -1,4 +1,4 @@
# How to Build and Run the Compiler # How to build and run the compiler
The compiler is built using a tool called `x.py`. You will need to The compiler is built using a tool called `x.py`. You will need to
have Python installed to run it. have Python installed to run it.

View File

@ -81,7 +81,7 @@ normally used for: building, testing, creating releases, formatting, etc.
[bootstrapping]: ./building/bootstrapping.md [bootstrapping]: ./building/bootstrapping.md
### Configuring the Compiler ### Configuring the compiler
In the top level of the repo: In the top level of the repo:

View File

@ -1,4 +1,4 @@
# Identifiers in the Compiler # Identifiers in the compiler
If you have read the few previous chapters, you now know that `rustc` uses If you have read the few previous chapters, you now know that `rustc` uses
many different intermediate representations to perform different kinds of analyses. many different intermediate representations to perform different kinds of analyses.

View File

@ -1,4 +1,4 @@
# Overview of the Compiler # Overview of the compiler
<!-- toc --> <!-- toc -->