Skip to content

Commit a9ed149

Browse files
oli-obkCentril
andauthored
Apply suggestions from code review
Co-Authored-By: Mazdak Farrokhzad <[email protected]>
1 parent e174a78 commit a9ed149

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/stability.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Stability
1+
# Stability attributes
22

33
This section is about the stability attributes and schemes that allow stable APIs to use unstable
44
APIs internally in the rustc standard library.
55

6-
For instructions on stabilizing a feature see [Stabilizing Features](./stabilization_guide.md).
6+
For instructions on stabilizing a language feature see [Stabilizing Features](./stabilization_guide.md).
77

88
# unstable
99

@@ -14,14 +14,14 @@ reapplied. So if you apply this to a module, all items in the module will be uns
1414
# stable
1515

1616
The `#[stable(feature = "foo", "since = "1.420.69")]` attribute explicitly marks an item as
17-
stabilized. In order to do this follow the instructions in
17+
stabilized. To do this, follow the instructions in
1818
[Stabilizing Features](./stabilization_guide.md).
1919

2020
Note that stable functions may use unstable things in their body.
2121

2222
# allow_internal_unstable
2323

24-
Macros, compiler desugarings and `const fn`s expose their bodies to the call site. In order to
24+
Macros, compiler desugarings and `const fn`s expose their bodies to the call site. To
2525
work around not being able to use unstable things in the standard library's macros, there's the
2626
`#[allow_internal_unstable(feature1, feature2)]` attribute that whitelists the given features for
2727
usage in stable macros or `const fn`s.

0 commit comments

Comments
 (0)