about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2019-08-21 17:01:40 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-08-24 22:06:59 -0500
commit02af3220c72fc0c001d5037e69eced98e7eb6f10 (patch)
tree1db70824d214e66be204f4f5221589adb25de8fc /src/doc/rustc-dev-guide
parente17d02d5094bbd174835b2394c11058ba1a7deb8 (diff)
downloadrust-02af3220c72fc0c001d5037e69eced98e7eb6f10.tar.gz
rust-02af3220c72fc0c001d5037e69eced98e7eb6f10.zip
Apply suggestions from code review
Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/stability.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/rustc-dev-guide/src/stability.md b/src/doc/rustc-dev-guide/src/stability.md
index 42eb7a9a742..30f328b7cd4 100644
--- a/src/doc/rustc-dev-guide/src/stability.md
+++ b/src/doc/rustc-dev-guide/src/stability.md
@@ -1,9 +1,9 @@
-# Stability
+# Stability attributes
 
 This section is about the stability attributes and schemes that allow stable APIs to use unstable
 APIs internally in the rustc standard library.
 
-For instructions on stabilizing a feature see [Stabilizing Features](./stabilization_guide.md).
+For instructions on stabilizing a language feature see [Stabilizing Features](./stabilization_guide.md).
 
 # unstable
 
@@ -14,14 +14,14 @@ reapplied. So if you apply this to a module, all items in the module will be uns
 # stable
 
 The `#[stable(feature = "foo", "since = "1.420.69")]` attribute explicitly marks an item as
-stabilized. In order to do this follow the instructions in
+stabilized. To do this, follow the instructions in
 [Stabilizing Features](./stabilization_guide.md).
 
 Note that stable functions may use unstable things in their body.
 
 # allow_internal_unstable
 
-Macros, compiler desugarings and `const fn`s expose their bodies to the call site. In order to
+Macros, compiler desugarings and `const fn`s expose their bodies to the call site. To
 work around not being able to use unstable things in the standard library's macros, there's the
 `#[allow_internal_unstable(feature1, feature2)]` attribute that whitelists the given features for
 usage in stable macros or `const fn`s.