From 392049d720ec486754b55bab43df83cf8b9a1f71 Mon Sep 17 00:00:00 2001 From: Sidney Cammeresi Date: Tue, 5 May 2026 21:53:21 -0700 Subject: [PATCH] Fix name of first compiled stage, as stage0 is downloaded --- src/stabilization-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stabilization-guide.md b/src/stabilization-guide.md index f159fad895..eb11a0e63f 100644 --- a/src/stabilization-guide.md +++ b/src/stabilization-guide.md @@ -89,7 +89,7 @@ Next, search for the feature string (in this case, `pub_restricted`) in the code Change uses of `#![feature(XXX)]` from the `std` and any rustc crates (which includes test folders under `library/` and `compiler/` but not the toplevel `tests/` one) to be `#![cfg_attr(bootstrap, feature(XXX))]`. -This includes the feature-gate only for stage0, which is built using the current beta (this is needed because the feature is still unstable in the current beta). +This includes the feature-gate only for stage1, which is built using the current beta (this is needed because the feature is still unstable in the current beta). Also, remove those strings from any tests (e.g. under `tests/`). If there are tests specifically targeting the feature-gate (i.e., testing that the feature-gate is required to use the feature, but nothing else), simply remove the test.