refactor(parts): remove part numbers to be consistent

This commit is contained in:
İsmail Arılık 2023-08-11 06:50:05 +00:00 committed by Tshepang Mbambo
parent 4fa0caa0eb
commit 3c5c7469c1
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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.

View File

@ -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