about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNoah Lev <camelidcamel@gmail.com>2021-11-04 09:30:35 -0700
committerNoah Lev <camelidcamel@gmail.com>2021-11-04 09:33:03 -0700
commit57d831b27b70bd66d4e133cca2df06b3bc64815d (patch)
tree42fe13d57ffdff194b1d7fcf1d95541b9dafcb10 /src/doc/rustc-dev-guide
parente679209aac11cc1e82a6b131a7b0a68533feafad (diff)
downloadrust-57d831b27b70bd66d4e133cca2df06b3bc64815d.tar.gz
rust-57d831b27b70bd66d4e133cca2df06b3bc64815d.zip
Fix date
Co-authored-by: Yuki Okushi <jtitor@2k36.org>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/overview.md b/src/doc/rustc-dev-guide/src/overview.md
index 5c0732f3746..5c88722ef34 100644
--- a/src/doc/rustc-dev-guide/src/overview.md
+++ b/src/doc/rustc-dev-guide/src/overview.md
@@ -262,7 +262,7 @@ 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-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: 2021-11 --> February 2021, only the steps between HIR and
+but as of <!-- date: 2021-11 --> November 2021, only the steps between HIR and
 LLVM IR are query-fied. That is, lexing, parsing, name resolution, and macro
 expansion are done all at once for the whole program.