Skip to content

Commit 978d894

Browse files
committed
mark-i-m review edits
1 parent d028856 commit 978d894

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/about-this-guide.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ There are six parts to this guide:
99
1. [Building, Debugging, and Contributing to `rustc`][p1]: Contains information that should be useful no matter how
1010
you are contributing, such as procedures for contribution, building the
1111
compiler, etc.
12-
2. [How `rustc` Works][p2]: Discusses the high-level
13-
architecture of the compiler and stages of the compile process
12+
2. [High-Level Compiler Architecture][p2]: Discusses the high-level
13+
architecture of the compiler and stages of the compile process.
1414
3. [Source Code Representation][p3]: Describes the process of taking raw source code from the user and
15-
transforming it into various forms that the compiler can work with easily
15+
transforming it into various forms that the compiler can work with easily.
1616
4. [Analysis][p4]: discusses the analyses that the compiler uses to check various
17-
properties of the code and inform later stages of the compile process
18-
5. [From MIR to Binaries][p5]: How linked executable machine code is generated
17+
properties of the code and inform later stages of the compile process (e.g., type checking).
18+
5. [From MIR to Binaries][p5]: How linked executable machine code is generated.
1919
6. [Appendices][app] at the end with useful reference information. There are a
2020
few of these with different information, inluding a glossary.
2121

src/part-2-intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 2: How `rustc` Works
1+
# Part 2: High-Level Compiler Architecture
22

33
The remaining parts of this guide discuss how the compiler works. They go
44
through everything from high-level structure of the compiler to how each stage

0 commit comments

Comments
 (0)