Skip to content

Commit abcd2bc

Browse files
Improve wording
Co-authored-by: LeSeulArtichaut <[email protected]>
1 parent 3c1c162 commit abcd2bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/building/bootstrapping.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Note that there are two `std` libraries in play here:
184184
2. The library _used to compile programs_ with `stageN/rustc`, which was
185185
built by stage N (stage N `std`).
186186

187-
stage N `std` is pretty much necessary for any useful work with the stage N compiler.
187+
Stage N `std` is pretty much necessary for any useful work with the stage N compiler.
188188
Without it, you can only compile programs with `#![no_core]` -- not terribly useful!
189189

190190
The reason these need to be different is because they aren't necessarily ABI-compatible:
@@ -194,7 +194,7 @@ to Rust metadata on nightly that aren't present in beta.
194194
This is also where `--keep-stage 1 library/std` comes into play. Since most
195195
changes to the compiler don't actually change the ABI, once you've produced a
196196
`std` in stage 1, you can probably just reuse it with a different compiler.
197-
If the ABI hasn't changed, you're good to go, no need to spend the time
197+
If the ABI hasn't changed, you're good to go, no need to spend time
198198
recompiling that `std`.
199199
`--keep-stage` simply assumes the previous compile is fine and copies those
200200
artifacts into the appropriate place, skipping the cargo invocation.

0 commit comments

Comments
 (0)