@@ -99,7 +99,7 @@ regarding dropping private/hidden items can be bypassed by passing
9999` --document-private-items ` to ` rustdoc ` . Note that unlike the previous set of [ ` AST ` ] [ ast ]
100100transformations, the passes are run on the _ cleaned_ crate.
101101
102- Here is the list of passes as of <!-- date-check --> August 2025 :
102+ Here is the list of passes as of <!-- date-check --> March 2023 :
103103
104104- ` calculate-doc-coverage ` calculates information used for the ` --show-coverage `
105105 flag.
@@ -122,7 +122,7 @@ Here is the list of passes as of <!-- date-check --> August 2025:
122122 - ` bare_urls ` detects links that are not linkified, e.g., in Markdown such as
123123 ` Go to https://example.com/. ` It suggests wrapping the link with angle brackets:
124124 ` Go to <https://example.com/>. ` to linkify it. This is the code behind the <!--
125- date-check: Aug 2025 --> ` rustdoc::bare_urls ` ` lint ` .
125+ date-check: may 2022 --> ` rustdoc::bare_urls ` ` lint ` .
126126
127127 - ` check_code_block_syntax ` validates syntax inside Rust code blocks
128128 (<code >```rust</code >)
@@ -212,7 +212,7 @@ directly, even during `HTML` generation. This [didn't used to be the case], and
212212a lot of ` rustdoc ` 's architecture was designed around not doing that, but a
213213` TyCtxt ` is now passed to ` formats::renderer::run_format ` , which is used to
214214run generation for both ` HTML ` and the
215- (unstable as of <!-- date-check --> August 2025 ) JSON format.
215+ (unstable as of <!-- date-check --> March 2023 ) JSON format.
216216
217217This change has allowed other changes to remove data from the "clean" [ ` AST ` ] [ ast ]
218218that can be easily derived from ` TyCtxt ` queries, and we'll usually accept
0 commit comments