File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -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.
You can’t perform that action at this time.
0 commit comments