about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2019-02-20 18:03:01 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-02-23 18:12:58 -0600
commitc65854cf3ddbded37ea6230063c098bf85591858 (patch)
tree5fdf5e5cc8d6323cec7c2cf74aca78cb49ef7f88 /src/doc/rustc-dev-guide
parent03b2339742f395454c4db838628cbcb2164b77fa (diff)
downloadrust-c65854cf3ddbded37ea6230063c098bf85591858.tar.gz
rust-c65854cf3ddbded37ea6230063c098bf85591858.zip
Update src/implementing_new_features.md
Co-Authored-By: rajcspsg <raj.cs.psg@gmail.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-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 44c1ce510fc..650d9915ce8 100644
--- a/src/doc/rustc-dev-guide/src/implementing_new_features.md
+++ b/src/doc/rustc-dev-guide/src/implementing_new_features.md
@@ -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
 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.
 
 Eventually, after we gain enough experience using the feature,