@@ -120,15 +120,15 @@ Options:
120120 --on-fail CMD command to run on failure
121121 --stage N stage to build
122122 --keep-stage N stage to keep without recompiling
123- --src DIR path to the root of the rust checkout
123+ --src DIR path to the root of the Rust checkout
124124 -j, --jobs JOBS number of jobs to run in parallel
125125 -h, --help print this help message
126126```
127127
128128For hacking, often building the stage 1 compiler is enough, which saves a lot
129129of time. But for final testing and release, the stage 2 compiler is used.
130130
131- ` ./x.py check ` is really fast to build the rust compiler.
131+ ` ./x.py check ` is really fast to build the Rust compiler.
132132It is, in particular, very useful when you're doing some kind of
133133"type-based refactoring", like renaming a method, or changing the
134134signature of some function.
@@ -150,7 +150,7 @@ What this command does is the following:
150150- Build ` std ` using the stage1 compiler (cannot use incremental)
151151
152152This final product (stage1 compiler + libs built using that compiler)
153- is what you need to build other rust programs (unless you use ` #![no_std] ` or
153+ is what you need to build other Rust programs (unless you use ` #![no_std] ` or
154154` #![no_core] ` ).
155155
156156The command includes the ` -i ` switch which enables incremental compilation.
0 commit comments