@@ -99,7 +99,7 @@ regarding dropping private/hidden items can be bypassed by passing
99
99
` --document-private-items ` to ` rustdoc ` . Note that unlike the previous set of [ ` AST ` ] [ ast ]
100
100
transformations, the passes are run on the _ cleaned_ crate.
101
101
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 :
103
103
104
104
- ` calculate-doc-coverage ` calculates information used for the ` --show-coverage `
105
105
flag.
@@ -122,7 +122,7 @@ Here is the list of passes as of <!-- date-check --> August 2025:
122
122
- ` bare_urls ` detects links that are not linkified, e.g., in Markdown such as
123
123
` Go to https://example.com/. ` It suggests wrapping the link with angle brackets:
124
124
` 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 ` .
126
126
127
127
- ` check_code_block_syntax ` validates syntax inside Rust code blocks
128
128
(<code >```rust</code >)
@@ -212,7 +212,7 @@ directly, even during `HTML` generation. This [didn't used to be the case], and
212
212
a lot of ` rustdoc ` 's architecture was designed around not doing that, but a
213
213
` TyCtxt ` is now passed to ` formats::renderer::run_format ` , which is used to
214
214
run 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.
216
216
217
217
This change has allowed other changes to remove data from the "clean" [ ` AST ` ] [ ast ]
218
218
that can be easily derived from ` TyCtxt ` queries, and we'll usually accept
0 commit comments