Skip to content

Commit c5d0e24

Browse files
Merge pull request #111 from colelawrence/patch-1
edit (grammar): Improve readability of "stage 1" v "stage 2"
2 parents afe69f4 + 61b2edb commit c5d0e24

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

x-py.md

Lines changed: 5 additions & 5 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.
@@ -260,7 +260,7 @@ documentation you want.
260260
By default `rustc` does not build the compiler for it's internal items.
261261
Mostly because this is useless for the average user. However, you might need to
262262
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:
264264

265265
```bash
266266
cp src/bootstrap/config.toml.example config.toml

0 commit comments

Comments
 (0)