File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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.
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
4848marks 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
6464a ` const fn ` as having its constness be ` stable ` . This attribute can make sense
6565even on an ` unstable ` function, if that function is called from another
6666` rustc_const_stable ` function.
You can’t perform that action at this time.
0 commit comments