Skip to content

Commit 7d4aee2

Browse files
ehsanmokmark-i-m
authored andcommitted
lint add dots
1 parent 9140b49 commit 7d4aee2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/how-to-build-and-run.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ internally. The result is the compiling `rustc` is done in stages.
5858
- **Stage 0:** the stage0 compiler can be your existing
5959
(perhaps older version of)
6060
Rust compiler, the current _beta_ compiler or you may download the binary
61-
from the internet
61+
from the internet.
6262
- **Stage 1:** the code in your clone (for new version)
6363
is then compiled with the stage0
6464
compiler to produce the stage1 compiler.
6565
However, it was built with an older compiler (stage0),
66-
so to optimize the stage1 compiler we go to next stage
66+
so to optimize the stage1 compiler we go to next stage.
6767
- **Stage 2:** we rebuild our stage1 compiler with itself
6868
to produce the stage2 compiler (i.e. it builds
69-
itself) to have all the _latest optimizations_
69+
itself) to have all the _latest optimizations_.
7070
- _(Optional)_ **Stage 3**: to sanity check of our new compiler,
7171
we can build it again
7272
with stage2 compiler which must be identical to itself,
73-
unless something has broken
73+
unless something has broken.
7474

7575
For hacking, often building the stage 1 compiler is enough, but for
7676
final testing and release, the stage 2 compiler is used.

0 commit comments

Comments
 (0)