From 3c5c7469c1259547ceb324275e10856b12b10e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Ar=C4=B1l=C4=B1k?= Date: Fri, 11 Aug 2023 06:50:05 +0000 Subject: [PATCH] refactor(parts): remove part numbers to be consistent --- src/part-2-intro.md | 2 +- src/part-3-intro.md | 2 +- src/part-4-intro.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/part-2-intro.md b/src/part-2-intro.md index 5ea4d7b6..aecab562 100644 --- a/src/part-2-intro.md +++ b/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/part-3-intro.md b/src/part-3-intro.md index c1008063..59a1eeba 100644 --- a/src/part-3-intro.md +++ b/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/part-4-intro.md b/src/part-4-intro.md index 00a74f30..6a843316 100644 --- a/src/part-4-intro.md +++ b/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