Skip to content

Commit 5a82d2f

Browse files
authored
Merge pull request #2466 from rust-lang/tshepang-moved
content has moved to another chapter
2 parents 91ede12 + febe3e6 commit 5a82d2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/query.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- toc -->
44

5-
As described in [the high-level overview of the compiler][hl], the Rust compiler
5+
As described in [Overview of the compiler], the Rust compiler
66
is still (as of <!-- date-check --> July 2021) transitioning from a
77
traditional "pass-based" setup to a "demand-driven" system. The compiler query
88
system is the key to rustc's demand-driven organization.
@@ -13,7 +13,7 @@ there is a query called `type_of` that, given the [`DefId`] of
1313
some item, will compute the type of that item and return it to you.
1414

1515
[`DefId`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/def_id/struct.DefId.html
16-
[hl]: ./compiler-src.md
16+
[Overview of the compiler]: overview.md#queries
1717

1818
Query execution is *memoized*. The first time you invoke a
1919
query, it will go do the computation, but the next time, the result is

0 commit comments

Comments
 (0)