summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2023-03-14 05:47:35 +0200
committerTshepang Mbambo <tshepang@gmail.com>2023-03-14 05:50:20 +0200
commit8bcd15e64056e7b14d774d3762024493b796c1a7 (patch)
treecdfd6c7900f4a005799060c19cccac7739153850 /src/doc/rustc-dev-guide
parent3e6740a703d008423cb3da80f97bf5542bca1a0a (diff)
downloadrust-8bcd15e64056e7b14d774d3762024493b796c1a7.tar.gz
rust-8bcd15e64056e7b14d774d3762024493b796c1a7.zip
alert when date gets stale (by using date-check annotation)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/rustdoc-internals.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/rustdoc-internals.md b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
index 8f5d485fe59..d58c2d28045 100644
--- a/src/doc/rustc-dev-guide/src/rustdoc-internals.md
+++ b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
@@ -184,7 +184,8 @@ It's important to note that rustdoc can ask the compiler for type information
 directly, even during HTML generation. This [didn't used to be the case], and
 a lot of rustdoc's architecture was designed around not doing that, but a
 `TyCtxt` is now passed to `formats::renderer::run_format`, which is used to
-run generation for both HTML and the (unstable as of March 2023) JSON format.
+run generation for both HTML and the
+(unstable as of <!-- date-check --> March 2023) JSON format.
 
 [didn't used to be the case]: https://github.com/rust-lang/rust/pull/80090