about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2020-02-18 14:47:39 -0300
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-03-17 12:16:02 -0500
commitef26d795e769a63f32d5f5f2837fcad7f684ac13 (patch)
treeddc60eede364bd00b0d7f311a902984521acb387 /src
parent8f2f724eb3988606850c2e6670bd63ac94d4dd57 (diff)
downloadrust-ef26d795e769a63f32d5f5f2837fcad7f684ac13.tar.gz
rust-ef26d795e769a63f32d5f5f2837fcad7f684ac13.zip
Remove typo
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/implementing_new_features.md2
1 files changed, 1 insertions, 1 deletions
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 780950c71c8..686c9b27044 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.