about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/SUMMARY.md4
-rw-r--r--src/doc/rustc-dev-guide/src/part-1-intro.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/SUMMARY.md b/src/doc/rustc-dev-guide/src/SUMMARY.md
index a17a3c6a089..4df03dc7aec 100644
--- a/src/doc/rustc-dev-guide/src/SUMMARY.md
+++ b/src/doc/rustc-dev-guide/src/SUMMARY.md
@@ -4,7 +4,7 @@
 
 ---
 
-- [Part 1 Intro](./part-1-intro.md)
+- [Part 1: Building, debugging, and contributing to Rustc](./part-1-intro.md)
 - [About the compiler team](./compiler-team.md)
 - [How to build the compiler and run what you built](./how-to-build-and-run.md)
     - [Build and Install distribution artifacts](./build-install-distribution-artifacts.md)
@@ -22,7 +22,7 @@
 
 ---
 
-- [Part 2 Intro](./part-2-intro.md)
+- [Part 2: How rustc works](./part-2-intro.md)
 - [High-level overview of the compiler source](./high-level-overview.md)
 - [The Rustc Driver](./rustc-driver.md)
     - [Rustdoc](./rustdoc.md)
diff --git a/src/doc/rustc-dev-guide/src/part-1-intro.md b/src/doc/rustc-dev-guide/src/part-1-intro.md
index c829f8c3bd3..65cb1ae482d 100644
--- a/src/doc/rustc-dev-guide/src/part-1-intro.md
+++ b/src/doc/rustc-dev-guide/src/part-1-intro.md
@@ -1,4 +1,4 @@
-# Part 1: General Knowledge
+# Part 1: Building, debugging, and contributing to Rustc
 
 This section of the rustc-guide contains knowledge that should be useful to you
 regardless of what part of the compiler you are working on. This includes both