Update src/implementing_new_features.md

Co-Authored-By: rajcspsg <raj.cs.psg@gmail.com>
This commit is contained in:
Who? Me?! 2019-02-20 18:03:01 -05:00
parent b150cc7b63
commit ab2452dcd0
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ in it without breaking people's code.
The way we do that is that we make sure all new features are feature The way we do that is that we make sure all new features are feature
gated - they can't be used without a enabling a feature gate gated - they can't be used without a enabling a feature gate
`(#[feature(foo)])`, which can't be done in a stable/beta compiler. (`#[feature(foo)]`), which can't be done in a stable/beta compiler.
See the [stability in code] section for the technical details. See the [stability in code] section for the technical details.
Eventually, after we gain enough experience using the feature, Eventually, after we gain enough experience using the feature,