Skip to content

Commit c5303db

Browse files
committed
lower-case "Compiler" in headings, for consistency (and looks)
1 parent df16ac4 commit c5303db

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

src/doc/rustc-dev-guide/src/SUMMARY.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Building and debugging `rustc`
1010

11-
- [How to Build and Run the Compiler](./building/how-to-build-and-run.md)
11+
- [How to build and run the compiler](./building/how-to-build-and-run.md)
1212
- [Prerequisites](./building/prerequisites.md)
1313
- [Suggested Workflows](./building/suggested.md)
1414
- [Distribution artifacts](./building/build-install-distribution-artifacts.md)
@@ -25,7 +25,7 @@
2525
- [Test headers](./tests/headers.md)
2626
- [Performance testing](./tests/perf.md)
2727
- [Crater](./tests/crater.md)
28-
- [Debugging the Compiler](./compiler-debugging.md)
28+
- [Debugging the compiler](./compiler-debugging.md)
2929
- [Using the tracing/logging instrumentation](./tracing.md)
3030
- [Profiling the compiler](./profiling.md)
3131
- [with the linux perf tool](./profiling/with_perf.md)
@@ -57,7 +57,7 @@
5757
# High-level Compiler Architecture
5858

5959
- [Prologue](./part-2-intro.md)
60-
- [Overview of the Compiler](./overview.md)
60+
- [Overview of the compiler](./overview.md)
6161
- [The compiler source code](./compiler-src.md)
6262
- [Bootstrapping](./building/bootstrapping.md)
6363
- [Queries: demand-driven compilation](./query.md)
@@ -95,7 +95,7 @@
9595
- [MIR construction](./mir/construction.md)
9696
- [MIR visitor and traversal](./mir/visitor.md)
9797
- [MIR passes: getting the MIR for a function](./mir/passes.md)
98-
- [Identifiers in the Compiler](./identifiers.md)
98+
- [Identifiers in the compiler](./identifiers.md)
9999
- [Closure expansion](./closure.md)
100100
- [Inline assembly](./asm.md)
101101

@@ -168,7 +168,7 @@
168168
- [Profile-guided Optimization](./profile-guided-optimization.md)
169169
- [LLVM Source-Based Code Coverage](./llvm-coverage-instrumentation.md)
170170
- [Sanitizers Support](./sanitizers.md)
171-
- [Debugging Support in the Rust Compiler](./debugging-support-in-rustc.md)
171+
- [Debugging support in the Rust compiler](./debugging-support-in-rustc.md)
172172

173173
---
174174

src/doc/rustc-dev-guide/src/building/bootstrapping.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bootstrapping the Compiler
1+
# Bootstrapping the compiler
22

33
<!-- toc -->
44

@@ -90,7 +90,7 @@ because one must first build the new compiler with an older compiler
9090
and then use that to build the new compiler with itself.
9191
For development, you usually only want the `stage1` compiler,
9292
which you can build with `./x.py build library`.
93-
See [Building the Compiler](./how-to-build-and-run.html#building-the-compiler).
93+
See [Building the compiler](./how-to-build-and-run.html#building-the-compiler).
9494

9595
### Stage 3
9696

src/doc/rustc-dev-guide/src/building/how-to-build-and-run.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How to Build and Run the Compiler
1+
# How to build and run the compiler
22

33
The compiler is built using a tool called `x.py`. You will need to
44
have Python installed to run it.

src/doc/rustc-dev-guide/src/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ normally used for: building, testing, creating releases, formatting, etc.
8181

8282
[bootstrapping]: ./building/bootstrapping.md
8383

84-
### Configuring the Compiler
84+
### Configuring the compiler
8585

8686
In the top level of the repo:
8787

src/doc/rustc-dev-guide/src/identifiers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Identifiers in the Compiler
1+
# Identifiers in the compiler
22

33
If you have read the few previous chapters, you now know that `rustc` uses
44
many different intermediate representations to perform different kinds of analyses.

src/doc/rustc-dev-guide/src/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Overview of the Compiler
1+
# Overview of the compiler
22

33
<!-- toc -->
44

0 commit comments

Comments
 (0)