about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2018-06-25 07:07:19 +0300
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-06-25 21:20:30 -0500
commite7d4e79e3b357fda3db6cae4a6e2f7c1b07ee91f (patch)
treef1a86afb4254661955e5fcaae158ebfec9980d58 /src
parent2b2972332fad3c2383e428f8a6393a3911710089 (diff)
downloadrust-e7d4e79e3b357fda3db6cae4a6e2f7c1b07ee91f.tar.gz
rust-e7d4e79e3b357fda3db6cae4a6e2f7c1b07ee91f.zip
Update high-level-overview.md
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/high-level-overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/high-level-overview.md b/src/doc/rustc-dev-guide/src/high-level-overview.md
index dce6b4c4130..8e49afaa94f 100644
--- a/src/doc/rustc-dev-guide/src/high-level-overview.md
+++ b/src/doc/rustc-dev-guide/src/high-level-overview.md
@@ -85,7 +85,7 @@ input, running the type-checker, and so forth. This on-demand model
 permits us to do exciting things like only do the minimal amount of
 work needed to type-check a single function. It also helps with
 incremental compilation. (For details on defining queries, check out
-`src/librustc/ty/query/README.md`.)
+the [query model].)
 
 Regardless of the general setup, the basic operations that the
 compiler must perform are the same. The only thing that changes is