about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorİsmail Arılık <arilik.ismail@gmail.com>2023-08-11 06:50:05 +0000
committerTshepang Mbambo <tshepang@gmail.com>2023-08-11 09:55:19 +0200
commit15f80d97aedab7b9cbd1c134d3cf144aaf239dc4 (patch)
tree6665f4f32e6cc53be9f7ffc6d322f6e728ec2c36 /src/doc/rustc-dev-guide
parent7602908937c80cab1a2abeb054220d0957342592 (diff)
downloadrust-15f80d97aedab7b9cbd1c134d3cf144aaf239dc4.tar.gz
rust-15f80d97aedab7b9cbd1c134d3cf144aaf239dc4.zip
refactor(parts): remove part numbers to be consistent
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/part-2-intro.md2
-rw-r--r--src/doc/rustc-dev-guide/src/part-3-intro.md2
-rw-r--r--src/doc/rustc-dev-guide/src/part-4-intro.md2
3 files changed, 3 insertions, 3 deletions
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 5ea4d7b6b6f..aecab562bfc 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: High-Level Compiler Architecture
+# High-Level Compiler Architecture
 
 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-3-intro.md b/src/doc/rustc-dev-guide/src/part-3-intro.md
index c1008063288..59a1eeba782 100644
--- a/src/doc/rustc-dev-guide/src/part-3-intro.md
+++ b/src/doc/rustc-dev-guide/src/part-3-intro.md
@@ -1,4 +1,4 @@
-# Part 3: Source Code Representation
+# Source Code Representation
 
 This part describes the process of taking raw source code from the user and
 transforming it into various forms that the compiler can work with easily.
diff --git a/src/doc/rustc-dev-guide/src/part-4-intro.md b/src/doc/rustc-dev-guide/src/part-4-intro.md
index 00a74f308ff..6a843316417 100644
--- a/src/doc/rustc-dev-guide/src/part-4-intro.md
+++ b/src/doc/rustc-dev-guide/src/part-4-intro.md
@@ -1,4 +1,4 @@
-# Part 4: Analysis
+# Analysis
 
 This part discusses the many analyses that the compiler uses to check various
 properties of the code and to inform later stages. Typically, this is what people