File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ prevents breaking dependencies by leveraging Cargo's lint capping.
44
44
[ rustc bug ] : https://github.com/rust-lang/rust/issues/15702
45
45
46
46
## stable
47
- The ` #[stable(feature = "foo", " since = "1.420.69")] ` attribute explicitly
47
+ The ` #[stable(feature = "foo", since = "1.420.69")] ` attribute explicitly
48
48
marks an item as stabilized. Note that stable functions may use unstable things in their body.
49
49
50
50
## rustc_const_unstable
@@ -60,7 +60,7 @@ there's no way to add `const` to functions in `extern` blocks for now.
60
60
61
61
## rustc_const_stable
62
62
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
64
64
a ` const fn ` as having its constness be ` stable ` . This attribute can make sense
65
65
even on an ` unstable ` function, if that function is called from another
66
66
` rustc_const_stable ` function.
You can’t perform that action at this time.
0 commit comments