about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authormark <markm@cs.wisc.edu>2019-01-18 15:32:17 -0600
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-01-18 15:51:53 -0600
commitca0fc8ec8ffe967d472018227b1d092c5e94c6fe (patch)
tree51b491bae7c81b18139a01b4e4b884c1eca1fb5c /src/doc/rustc-dev-guide
parenta0badea0c7ecddb45d5b5c93607f46689100dad5 (diff)
downloadrust-ca0fc8ec8ffe967d472018227b1d092c5e94c6fe.tar.gz
rust-ca0fc8ec8ffe967d472018227b1d092c5e94c6fe.zip
better titles a la Niko
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