We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7775822 commit ac6c09aCopy full SHA for ac6c09a
compiler/rustc_error_codes/src/error_codes/E0546.md
@@ -19,10 +19,10 @@ To fix the issue you need to provide the `feature` field.
19
#![feature(staged_api)]
20
#![stable(since = "1.0.0", feature = "test")]
21
22
-#[unstable(feature = "unstable_fn", issue = "none")] // ok!!
+#[unstable(feature = "unstable_fn", issue = "none")] // ok!
23
fn unstable_fn() {}
24
25
-#[stable(feature = "stable_fn", since = "1.0.0")] // ok!!
+#[stable(feature = "stable_fn", since = "1.0.0")] // ok!
26
fn stable_fn() {}
27
```
28
0 commit comments