Skip to content

Commit 9140b49

Browse files
ehsanmokmark-i-m
authored andcommitted
fix max line len
1 parent 30d2018 commit 9140b49

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

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

+6-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ settings (and possibly others, such as `llvm.ccache`):
2828
assertions = true
2929

3030
[rust]
31-
# This enables some assertions, but more importantly it enables the `debug!` logging
32-
# macros that are essential for debugging rustc.
31+
# This enables some assertions, but more importantly it enables the `debug!`
32+
# logging macros that are essential for debugging rustc.
3333
debug-assertions = true
3434

3535
# This will make your build more parallel; it costs a bit of runtime
@@ -55,7 +55,8 @@ compiler to compile the newer version. In particular, the newer version of the
5555
compiler, `libstd`, and other tooling may use some unstable features
5656
internally. The result is the compiling `rustc` is done in stages.
5757

58-
- **Stage 0:** the stage0 compiler can be your existing (perhaps older version of)
58+
- **Stage 0:** the stage0 compiler can be your existing
59+
(perhaps older version of)
5960
Rust compiler, the current _beta_ compiler or you may download the binary
6061
from the internet
6162
- **Stage 1:** the code in your clone (for new version)
@@ -66,7 +67,8 @@ internally. The result is the compiling `rustc` is done in stages.
6667
- **Stage 2:** we rebuild our stage1 compiler with itself
6768
to produce the stage2 compiler (i.e. it builds
6869
itself) to have all the _latest optimizations_
69-
- _(Optional)_ **Stage 3**: to sanity check of our new compiler, we can build it again
70+
- _(Optional)_ **Stage 3**: to sanity check of our new compiler,
71+
we can build it again
7072
with stage2 compiler which must be identical to itself,
7173
unless something has broken
7274

0 commit comments

Comments
 (0)