From ef26d795e769a63f32d5f5f2837fcad7f684ac13 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Tue, 18 Feb 2020 14:47:39 -0300 Subject: [PATCH] Remove typo --- src/doc/rustc-dev-guide/src/implementing_new_features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/rustc-dev-guide/src/implementing_new_features.md b/src/doc/rustc-dev-guide/src/implementing_new_features.md index 780950c71c8d..686c9b27044c 100644 --- a/src/doc/rustc-dev-guide/src/implementing_new_features.md +++ b/src/doc/rustc-dev-guide/src/implementing_new_features.md @@ -66,7 +66,7 @@ it would end up de facto stable and we'll not be able to make changes in it without breaking people's code. 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 enabling a feature gate (`#[feature(foo)]`), which can't be done in a stable/beta compiler. See the [stability in code] section for the technical details.