Minor update to stability.md

This commit is contained in:
Ross MacArthur 2019-12-22 23:36:34 +02:00 committed by Who? Me?!
parent 0ea4c1df51
commit dadbf0da80
1 changed files with 2 additions and 1 deletions

View File

@ -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