Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,20 +441,20 @@ Just a few things to keep in mind:
For the action to pick the date, add a special annotation before specifying the date:

```md
<!-- date-check --> Nov 2025
<!-- date-check --> May 2026
```

Example:

```md
As of <!-- date-check --> Nov 2025, the foo did the bar.
As of <!-- date-check --> May 2026, the foo did the bar.
```

For cases where the date should not be part of the visible rendered output,
use the following instead:

```md
<!-- date-check: Nov 2025 -->
<!-- date-check: May 2026 -->
Comment on lines -444 to +457
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is in the contributing guide and not tied to anything specific. it doesn't need updating.

```

- A link to a relevant WG, tracking issue, `rustc` rustdoc page, or similar, that may provide
Expand Down
2 changes: 1 addition & 1 deletion src/implementing-new-features.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- date-check: Jul 2025 -->
<!-- date-check: May 2026 -->
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto, should just be removed.


# Implementing new language features

Expand Down
2 changes: 1 addition & 1 deletion src/normalization.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ In this example:

When interfacing with the type system it will often be the case that it's necessary to request a type be normalized. There are a number of different entry points to the underlying normalization logic and each entry point should only be used in specific parts of the compiler.

<!-- date-check: May 2025 -->
<!-- date-check: May 2026 -->
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto, should just be removed

An additional complication is that the compiler is currently undergoing a transition from the old trait solver to the new trait solver.
As part of this transition our approach to normalization in the compiler has changed somewhat significantly, resulting in some normalization entry points being "old solver only" slated for removal in the long-term once the new solver has stabilized.
The transition can be tracked via the [WG-trait-system-refactor](https://github.com/rust-lang/rust/labels/WG-trait-system-refactor) label in Github.
Expand Down
2 changes: 1 addition & 1 deletion src/rustdoc-internals.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ 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 <!-- date-check --> Nov 2025) JSON format.
run generation for both `HTML` and the (unstable as of <!-- date-check --> May 2026) JSON format.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 this looks good


This change has allowed other changes to remove data from the "clean" [`AST`][ast]
that can be easily derived from `TyCtxt` queries, and we'll usually accept
Expand Down
2 changes: 1 addition & 1 deletion src/tests/minicore.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `minicore` test auxiliary: using `core` stubs

<!-- date-check: Oct 2025 -->
<!-- date-check: May 2026 -->
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see any date here at all. Can we just remove the date-check comment?


[`tests/auxiliary/minicore.rs`][`minicore`] is a test auxiliary for ui/codegen/assembly/mir-opt test suites.
It provides `core` stubs for tests that need to
Expand Down
2 changes: 1 addition & 1 deletion src/tests/misc.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## `RUSTC_BOOTSTRAP` and stability

<!-- date-check: Nov 2024 -->
<!-- date-check: May 2026 -->
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto, shouldn't be here


This is a bootstrap/compiler implementation detail, but it can also be useful
for testing:
Expand Down
Loading