Skip to content

Commit 60e2825

Browse files
YohDeadfalljyn514
authored andcommitted
Fixed typos in inline code
1 parent 33c1eff commit 60e2825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stability.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ prevents breaking dependencies by leveraging Cargo's lint capping.
4444
[rustc bug]: https://github.com/rust-lang/rust/issues/15702
4545

4646
## stable
47-
The `#[stable(feature = "foo", "since = "1.420.69")]` attribute explicitly
47+
The `#[stable(feature = "foo", since = "1.420.69")]` attribute explicitly
4848
marks an item as stabilized. Note that stable functions may use unstable things in their body.
4949

5050
## rustc_const_unstable
@@ -60,7 +60,7 @@ there's no way to add `const` to functions in `extern` blocks for now.
6060

6161
## rustc_const_stable
6262

63-
The `#[rustc_const_stable(feature = "foo", "since = "1.420.69")]` attribute explicitly marks
63+
The `#[rustc_const_stable(feature = "foo", since = "1.420.69")]` attribute explicitly marks
6464
a `const fn` as having its constness be `stable`. This attribute can make sense
6565
even on an `unstable` function, if that function is called from another
6666
`rustc_const_stable` function.

0 commit comments

Comments
 (0)