diff --git a/src/stabilization-guide.md b/src/stabilization-guide.md index f159fad89..eb11a0e63 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.