Skip to content

Commit 9bdf929

Browse files
author
Rajkumar Natarajan
committed
Fixing the long lines in appendix-stupid-status#100
1 parent d90a959 commit 9bdf929

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/appendix-stupid-stats.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,12 @@ in [librustc_back](https://github.com/rust-lang/rust/tree/master/src/librustc_ba
8888

8989
All these phases are coordinated by the driver. To see the exact sequence, look
9090
at [the `compile_input` function in `librustc_driver`][compile-input].
91-
The driver handles all the highest level coordination of compilation - handling
92-
command-line arguments, maintaining compilation state (primarily in the `Session`),
93-
and calling the appropriate code to run each phase of compilation. It also handles
94-
high level coordination of pretty printing and testing. To create a drop-in
95-
compiler replacement or a compiler replacement, we leave most of compilation
91+
The driver handles all the highest level coordination of compilation -
92+
1. handling command-line arguments
93+
2. maintaining compilation state (primarily in the `Session`)
94+
3. calling the appropriate code to run each phase of compilation
95+
4. handles high level coordination of pretty printing and testing.
96+
To create a drop-in compiler replacement or a compiler replacement, we leave most of compilation
9697
alone and customise the driver using its APIs.
9798

9899
[compile-input]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_driver/driver/fn.compile_input.html

0 commit comments

Comments
 (0)