@@ -52,10 +52,10 @@ This command will build the compiler. Because Rust is a bootstrapping compiler
52
52
twice. The first compilation creates the "stage 1" compiler and the second
53
53
compilation creates the "stage 2" compiler. The "stage 2" compiler is typically
54
54
considered the final compiler and is what tests are run with and what you will
55
- likely interact with. In most situations the "stage 1" compiler may is all you
56
- need, but if working on something like procedural macros you'll need a "stage 2"
57
- compiler. "stage 1" is typically faster for development, while "stage 2" is the
58
- only one guaranteed to work for all tasks.
55
+ likely interact with. In most situations the "stage 1" compiler may be all you
56
+ need, but if you're working on something like procedural macros you'll need a
57
+ "stage 2" compiler. "stage 1" is typically faster for development, while
58
+ "stage 2" is the only one guaranteed to work for all tasks.
59
59
60
60
More often than not this is not the command you want to run unless you plan on
61
61
double checking that everything is working.
@@ -260,7 +260,7 @@ documentation you want.
260
260
By default ` rustc ` does not build the compiler for it's internal items.
261
261
Mostly because this is useless for the average user. However, you might need to
262
262
have it available so you can understand the types. Here's how you can compile it
263
- yourself. From the top level directory where ` x.py ` is located run:
263
+ yourself. From the top level directory where ` x.py ` is located run:
264
264
265
265
``` bash
266
266
cp src/bootstrap/config.toml.example config.toml
0 commit comments