Skip to content

Commit 9835874

Browse files
committed
fix line length
1 parent cab38bc commit 9835874

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/compiler-src.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,10 @@ using function pointers. This allows us to break dependencies between crates,
126126
allowing more parallel compilation. The query system is defined in
127127
[`rustc_middle`], so nearly all subsequent parts of the compiler depend on this
128128
crate. It is a really large crate, leading to long compile times. Some efforts
129-
have been made to move stuff out of it with varying success. Another side-effect is that sometimes related functionality gets scattered across different
130-
crates. For example, linting functionality is found across earlier parts of the
131-
crate, [`rustc_lint`], [`rustc_middle`], and other places.
129+
have been made to move stuff out of it with varying success. Another
130+
side-effect is that sometimes related functionality gets scattered across
131+
different crates. For example, linting functionality is found across earlier
132+
parts of the crate, [`rustc_lint`], [`rustc_middle`], and other places.
132133

133134
Ideally there would be fewer, more cohesive crates, with incremental and
134135
parallel compilation making sure compile times stay reasonable. However,

0 commit comments

Comments
 (0)