diff options
| author | Alexander Regueiro <alex@noldorin.com> | 2018-01-31 02:09:24 +0000 |
|---|---|---|
| committer | Who? Me?! <mark-i-m@users.noreply.github.com> | 2018-01-30 20:14:12 -0600 |
| commit | d797aaecca4e8c8ab49cefd3b9977d5e56ec6ca1 (patch) | |
| tree | de08885be9f39f7c20d88db94b9b8fd7c88c895b /src/doc/rustc-dev-guide | |
| parent | a3961062015b21793087eb0362ca3ffc8fe6584d (diff) | |
| download | rust-d797aaecca4e8c8ab49cefd3b9977d5e56ec6ca1.tar.gz rust-d797aaecca4e8c8ab49cefd3b9977d5e56ec6ca1.zip | |
minor clarification
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/incremental-compilation.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/incremental-compilation.md b/src/doc/rustc-dev-guide/src/incremental-compilation.md index 2ab053e1730..dc4d06c6c35 100644 --- a/src/doc/rustc-dev-guide/src/incremental-compilation.md +++ b/src/doc/rustc-dev-guide/src/incremental-compilation.md @@ -49,7 +49,7 @@ query Q (which must not have yet been executed). In cases where Q has red inputs, determining Q's color may involve re-executing Q so that we can compare its output, but if all of Q's inputs are green, then we can conclude that Q must be green without re-executing it or inspecting -its value, regardless. In the compiler, this allows us to avoid +its value at all. In the compiler, this allows us to avoid deserializing the result from disk when we don't need it, and in fact enables us to sometimes skip *serializing* the result as well (see the refinements section below). |
