about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2020-06-23 19:20:42 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-06-28 12:15:23 -0500
commitff7b681fdfcfc6b8a2e9d1080ed95d6037fd6674 (patch)
tree221e961addb58cf324147bd59bc6762c73d88bbb /src/doc
parent9a6bd527e64f95423836347385575f826a29a594 (diff)
downloadrust-ff7b681fdfcfc6b8a2e9d1080ed95d6037fd6674.tar.gz
rust-ff7b681fdfcfc6b8a2e9d1080ed95d6037fd6674.zip
Improve wording and fix typos
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/building/bootstrapping.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/building/bootstrapping.md b/src/doc/rustc-dev-guide/src/building/bootstrapping.md
index 536a4118f0e..843cc264152 100644
--- a/src/doc/rustc-dev-guide/src/building/bootstrapping.md
+++ b/src/doc/rustc-dev-guide/src/building/bootstrapping.md
@@ -15,7 +15,7 @@ only way to build a modern version of rustc is a slightly less modern
 version.
 
 This is exactly how `x.py` works: it downloads the current `beta` release of
-rustc, then uses it to compile the nightly compiler. The beta release is
+rustc, then uses it to compile the new compiler. The beta release is
 called `stage0` and the newly built compiler is `stage1` (or `stage0
 artifacts`). To get the full benefits of the new compiler (e.g. optimizations
 and new features), the `stage1` compiler then compiles _itself_ again. This
@@ -62,7 +62,7 @@ components of bootstrap: the main one written in rust, and `bootstrap.py`.
 `stage0` compiler, which will then build the bootstrap binary written in
 Rust.
 
-Because there are two separate codebases being from from `x.py`, they need to
+Because there are two separate codebases behind `x.py`, they need to
 be kept in sync. In particular, both `bootstrap.py` and the bootstrap binary
 parse `config.toml` and read the same command line arguments. `bootstrap.py`
 keeps these in sync by setting various environment variables, and the