Skip to content

Commit bcfe470

Browse files
authored
edit (grammar): Improve readability of "stage 1" v "stage 2"
1 parent afe69f4 commit bcfe470

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

x-py.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ This command will build the compiler. Because Rust is a bootstrapping compiler
5252
twice. The first compilation creates the "stage 1" compiler and the second
5353
compilation creates the "stage 2" compiler. The "stage 2" compiler is typically
5454
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.
5959

6060
More often than not this is not the command you want to run unless you plan on
6161
double checking that everything is working.

0 commit comments

Comments
 (0)