Skip to content

Commit 9c4b433

Browse files
adds 'with' to help clarify how to build a new compiler
1 parent c5598e0 commit 9c4b433

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/building/bootstrapping/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ of the same compiler.
77
This raises a chicken-and-egg paradox: where did the first compiler come from?
88
It must have been written in a different language. In Rust's case it was
99
[written in OCaml][ocaml-compiler]. However it was abandoned long ago and the
10-
only way to build a modern version of rustc is a slightly less modern
10+
only way to build a modern version of rustc is with a slightly less modern
1111
version.
1212

1313
This is exactly how `x.py` works: it downloads the current beta release of

src/building/bootstrapping/what-bootstrapping-does.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ the same compiler.
99
This raises a chicken-and-egg paradox: where did the first compiler come from?
1010
It must have been written in a different language. In Rust's case it was
1111
[written in OCaml][ocaml-compiler]. However it was abandoned long ago and the
12-
only way to build a modern version of `rustc` is a slightly less modern version.
12+
only way to build a modern version of `rustc` is with a slightly less modern version.
1313

1414
This is exactly how [`./x.py`] works: it downloads the current beta release of
1515
`rustc`, then uses it to compile the new compiler.

0 commit comments

Comments
 (0)