break long sentence

This commit is contained in:
mark 2020-04-04 13:02:04 -05:00 committed by Who? Me?!
parent b7c0121552
commit dd2fa1b863
1 changed files with 2 additions and 2 deletions

View File

@ -190,8 +190,8 @@ redundant work as possible to produce the new binary.
In `rustc`, all the major steps above are organized as a bunch of queries that
call each other. For example, there is a query to ask for the type of something
and another to ask for the optimized MIR of a function. These
queries can call each other and are all tracked through the query system, and
the results of the queries are cached on disk so that we can tell which
queries can call each other and are all tracked through the query system.
The results of the queries are cached on disk so that we can tell which
queries' results changed from the last compilation and only redo those. This is
how incremental compilation works.