Skip to content

Commit 17dd4a7

Browse files
committed
Address review: revert contributing.md examples, remove unnecessary date-check comments
1 parent 6dbf70f commit 17dd4a7

5 files changed

Lines changed: 3 additions & 7 deletions

File tree

src/contributing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,20 +444,20 @@ Just a few things to keep in mind:
444444
For the action to pick the date, add a special annotation before specifying the date:
445445

446446
```md
447-
<!-- date-check --> May 2026
447+
<!-- date-check --> Nov 2025
448448
```
449449

450450
Example:
451451

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

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

459459
```md
460-
<!-- date-check: May 2026 -->
460+
<!-- date-check: Nov 2025 -->
461461
```
462462

463463
- A link to a relevant WG, tracking issue, `rustc` rustdoc page, or similar, that may provide

src/implementing-new-features.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- date-check: May 2026 -->
21

32
# Implementing new language features
43

src/normalization.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ In this example:
164164

165165
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.
166166

167-
<!-- date-check: May 2026 -->
168167
An additional complication is that the compiler is currently undergoing a transition from the old trait solver to the new trait solver.
169168
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.
170169
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.

src/tests/minicore.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# `minicore` test auxiliary: using `core` stubs
22

3-
<!-- date-check: May 2026 -->
43

54
[`tests/auxiliary/minicore.rs`][`minicore`] is a test auxiliary for ui/codegen/assembly/mir-opt test suites.
65
It provides `core` stubs for tests that need to

src/tests/misc.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
## `RUSTC_BOOTSTRAP` and stability
44

5-
<!-- date-check: May 2026 -->
65

76
This is a bootstrap/compiler implementation detail, but it can also be useful
87
for testing:

0 commit comments

Comments
 (0)