From 60402a753a24cdb89b4a6c251ec02017dee397c4 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Tue, 14 Mar 2023 05:47:35 +0200 Subject: [PATCH] alert when date gets stale (by using date-check annotation) --- src/rustdoc-internals.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rustdoc-internals.md b/src/rustdoc-internals.md index 8f5d485f..d58c2d28 100644 --- a/src/rustdoc-internals.md +++ b/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 March 2023) JSON format. [didn't used to be the case]: https://github.com/rust-lang/rust/pull/80090