Skip to content

Commit

Permalink
lower-case "Compiler" in headings, for consistency (and looks)
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang committed Feb 18, 2023
1 parent df16ac4 commit c5303db
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions src/doc/rustc-dev-guide/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# 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)
- [Suggested Workflows](./building/suggested.md)
- [Distribution artifacts](./building/build-install-distribution-artifacts.md)
Expand All @@ -25,7 +25,7 @@
- [Test headers](./tests/headers.md)
- [Performance testing](./tests/perf.md)
- [Crater](./tests/crater.md)
- [Debugging the Compiler](./compiler-debugging.md)
- [Debugging the compiler](./compiler-debugging.md)
- [Using the tracing/logging instrumentation](./tracing.md)
- [Profiling the compiler](./profiling.md)
- [with the linux perf tool](./profiling/with_perf.md)
Expand Down Expand Up @@ -57,7 +57,7 @@
# High-level Compiler Architecture

- [Prologue](./part-2-intro.md)
- [Overview of the Compiler](./overview.md)
- [Overview of the compiler](./overview.md)
- [The compiler source code](./compiler-src.md)
- [Bootstrapping](./building/bootstrapping.md)
- [Queries: demand-driven compilation](./query.md)
Expand Down Expand Up @@ -95,7 +95,7 @@
- [MIR construction](./mir/construction.md)
- [MIR visitor and traversal](./mir/visitor.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)
- [Inline assembly](./asm.md)

Expand Down Expand Up @@ -168,7 +168,7 @@
- [Profile-guided Optimization](./profile-guided-optimization.md)
- [LLVM Source-Based Code Coverage](./llvm-coverage-instrumentation.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)

---

Expand Down
4 changes: 2 additions & 2 deletions src/doc/rustc-dev-guide/src/building/bootstrapping.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bootstrapping the Compiler
# Bootstrapping the compiler

<!-- toc -->

Expand Down Expand Up @@ -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.
For development, you usually only want the `stage1` compiler,
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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
have Python installed to run it.
Expand Down
2 changes: 1 addition & 1 deletion src/doc/rustc-dev-guide/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ normally used for: building, testing, creating releases, formatting, etc.

[bootstrapping]: ./building/bootstrapping.md

### Configuring the Compiler
### Configuring the compiler

In the top level of the repo:

Expand Down
2 changes: 1 addition & 1 deletion src/doc/rustc-dev-guide/src/identifiers.md
Original file line number Diff line number Diff line change
@@ -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
many different intermediate representations to perform different kinds of analyses.
Expand Down
2 changes: 1 addition & 1 deletion src/doc/rustc-dev-guide/src/overview.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Overview of the Compiler
# Overview of the compiler

<!-- toc -->

Expand Down

0 comments on commit c5303db

Please sign in to comment.