From f5eb5de9e7eef64e38a0ba71903218edb83af358 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?T=C3=A9o=20Bouvard?= <teobouvard@gmail.com>
Date: Thu, 24 Feb 2022 19:17:32 +0100
Subject: [PATCH 1/2] Fix typo

---
 src/building/bootstrapping.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/building/bootstrapping.md b/src/building/bootstrapping.md
index 48f501a02..8b405bccf 100644
--- a/src/building/bootstrapping.md
+++ b/src/building/bootstrapping.md
@@ -218,7 +218,7 @@ Stage N `std` is pretty much necessary for any useful work with the stage N comp
 Without it, you can only compile programs with `#![no_core]` -- not terribly useful!
 
 The reason these need to be different is because they aren't necessarily ABI-compatible:
-there could be a new layout optimizations, changes to MIR, or other changes
+there could be new layout optimizations, changes to the MIR, or other changes
 to Rust metadata on nightly that aren't present in beta.
 
 This is also where `--keep-stage 1 library/std` comes into play. Since most

From 765b09eb51d8fbb6c979c839bad47e5ae12de299 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?T=C3=A9o=20Bouvard?= <teobouvard@gmail.com>
Date: Thu, 24 Feb 2022 20:25:36 +0100
Subject: [PATCH 2/2] Revert addition of "the"

---
 src/building/bootstrapping.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/building/bootstrapping.md b/src/building/bootstrapping.md
index 8b405bccf..b6ba3000e 100644
--- a/src/building/bootstrapping.md
+++ b/src/building/bootstrapping.md
@@ -218,7 +218,7 @@ Stage N `std` is pretty much necessary for any useful work with the stage N comp
 Without it, you can only compile programs with `#![no_core]` -- not terribly useful!
 
 The reason these need to be different is because they aren't necessarily ABI-compatible:
-there could be new layout optimizations, changes to the MIR, or other changes
+there could be new layout optimizations, changes to MIR, or other changes
 to Rust metadata on nightly that aren't present in beta.
 
 This is also where `--keep-stage 1 library/std` comes into play. Since most