about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorChris Simpkins <git.simpkins@gmail.com>2020-04-07 01:05:14 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-04-07 12:11:56 -0500
commite79cf128b72c6e757f97a4977f9fa152674bf071 (patch)
tree7b49cb4331a3966d0c6c8d8c2d41ae47a2759db1 /src/doc
parent8cffef7b2002e8946fe8a3069221a85843bd611c (diff)
downloadrust-e79cf128b72c6e757f97a4977f9fa152674bf071.tar.gz
rust-e79cf128b72c6e757f97a4977f9fa152674bf071.zip
consistent section title casing
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/part-1-intro.md2
-rw-r--r--src/doc/rustc-dev-guide/src/part-2-intro.md2
-rw-r--r--src/doc/rustc-dev-guide/src/part-5-intro.md2
3 files changed, 3 insertions, 3 deletions
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 7597c71285c..95d2f8fccf1 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: Building, debugging, and contributing to Rustc
+# Part 1: Building, Debugging, and Contributing to `rustc`
 
 This section of the rustc-dev-guide contains knowledge that should be useful to you
 regardless of what part of the compiler you are working on. This includes both
diff --git a/src/doc/rustc-dev-guide/src/part-2-intro.md b/src/doc/rustc-dev-guide/src/part-2-intro.md
index dc774f0c626..04bb32cdbf8 100644
--- a/src/doc/rustc-dev-guide/src/part-2-intro.md
+++ b/src/doc/rustc-dev-guide/src/part-2-intro.md
@@ -1,4 +1,4 @@
-# Part 2: How rustc works
+# Part 2: How `rustc` Works
 
 The remaining parts of this guide discuss how the compiler works. They go
 through everything from high-level structure of the compiler to how each stage
diff --git a/src/doc/rustc-dev-guide/src/part-5-intro.md b/src/doc/rustc-dev-guide/src/part-5-intro.md
index 41c3eceb2be..184d0ee3ae9 100644
--- a/src/doc/rustc-dev-guide/src/part-5-intro.md
+++ b/src/doc/rustc-dev-guide/src/part-5-intro.md
@@ -1,4 +1,4 @@
-# From MIR to binaries
+# From MIR to Binaries
 
 All of the preceding chapters of this guide have one thing in common: we never
 generated any executable machine code at all! With this chapter, all of that