about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorRoss MacArthur <ross@macarthur.io>2019-12-22 23:36:34 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-12-22 17:17:47 -0600
commita57693df70e13e20b19b094d7b993f60ddf28536 (patch)
tree3fdff1a0a9fccadde33b313de7ee4a530136554b /src/doc/rustc-dev-guide
parent6cf400b75f3b18004ad448d40eceabd82f7764ab (diff)
downloadrust-a57693df70e13e20b19b094d7b993f60ddf28536.tar.gz
rust-a57693df70e13e20b19b094d7b993f60ddf28536.zip
Minor update to stability.md
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/stability.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/stability.md b/src/doc/rustc-dev-guide/src/stability.md
index 9e75495b1ee..292d88813a1 100644
--- a/src/doc/rustc-dev-guide/src/stability.md
+++ b/src/doc/rustc-dev-guide/src/stability.md
@@ -12,7 +12,8 @@ The `#[unstable(feature = "foo", issue = "1234", reason = "lorem ipsum")]`
 attribute explicitly marks an item as unstable. Items that are marked as
 "unstable" cannot be used without a corresponding `#![feature]` attribute on
 the crate, even on a nightly compiler. This restriction only applies across
-crate boundaries, unstable items may be used within the crate they are defined.
+crate boundaries, unstable items may be used within the crate that defines
+them.
 
 The `issue` field specifies the associated GitHub [issue number]. This field is
 required and all unstable features should have an associated tracking issue. In