about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorChris Bloodsworth <christopherbloodsworth@gmail.com>2024-12-17 16:33:24 -0500
committerTshepang Mbambo <tshepang@gmail.com>2024-12-18 08:01:33 +0200
commit7460210a03a00a28fb3ca607f1f401011a565a6b (patch)
tree86f8f4f127f44092c3b5d8c645f6a8cfa4b26c76 /src/doc/rustc-dev-guide
parent95782ede0280a13ef405969d8222f2a82d02f883 (diff)
downloadrust-7460210a03a00a28fb3ca607f1f401011a565a6b.tar.gz
rust-7460210a03a00a28fb3ca607f1f401011a565a6b.zip
Fix trivial typo of "query-fied"
"Query-field" should be "Query-fied" - three instances.
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/overview.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/overview.md b/src/doc/rustc-dev-guide/src/overview.md
index af050a0e174..cc17eaa9e48 100644
--- a/src/doc/rustc-dev-guide/src/overview.md
+++ b/src/doc/rustc-dev-guide/src/overview.md
@@ -284,7 +284,7 @@ queries are cached on disk so that the compiler can tell which queries' results
 changed from the last compilation and only redo those. This is how incremental
 compilation works.
 
-In principle, for the query-field steps, we do each of the above for each item
+In principle, for the query-fied steps, we do each of the above for each item
 individually. For example, we will take the `HIR` for a function and use queries
 to ask for the `LLVM-IR` for that HIR. This drives the generation of optimized
 `MIR`, which drives the borrow checker, which drives the generation of `MIR`, and
@@ -303,11 +303,11 @@ to remain to ensure that unreachable functions still have their errors emitted.
 [passes]: https://github.com/rust-lang/rust/blob/e69c7306e2be08939d95f14229e3f96566fb206c/compiler/rustc_interface/src/passes.rs#L791
 
 Moreover, the compiler wasn't originally built to use a query system; the query
-system has been retrofitted into the compiler, so parts of it are not query-field
+system has been retrofitted into the compiler, so parts of it are not query-fied
 yet. Also, LLVM isn't our code, so that isn't querified either. The plan is to
 eventually query-fy all of the steps listed in the previous section,
 but as of <!-- date-check --> November 2022, only the steps between `HIR` and
-`LLVM-IR` are query-field. That is, lexing, parsing, name resolution, and macro
+`LLVM-IR` are query-fied. That is, lexing, parsing, name resolution, and macro
 expansion are done all at once for the whole program.
 
 One other thing to mention here is the all-important "typing context",