Update src/stabilization_guide.md

Co-Authored-By: rajcspsg <raj.cs.psg@gmail.com>
This commit is contained in:
Who? Me?! 2019-01-17 14:05:13 -05:00
parent d3e8792c2c
commit 74fd971003
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ writing, the next stable release (i.e. what is currently beta) was
Next search for the feature string (in this case, `pub_restricted`) Next search for the feature string (in this case, `pub_restricted`)
in the codebase to find where it appears. Change uses of in the codebase to find where it appears. Change uses of
`#![feature(XXX)]` from the stdlib and rustc crates to be `#![feature(XXX)]` from the `libstd` and any rustc crates to be
`#![cfg_attr(stage0, feature(XXX))]`. This includes the feature-gate `#![cfg_attr(stage0, feature(XXX))]`. This includes the feature-gate
only for stage0, which is built using the current beta (this is only for stage0, which is built using the current beta (this is
needed because the feature is still unstable in the current beta). needed because the feature is still unstable in the current beta).