Skip to content

Commit ac6c09a

Browse files
committed
Typo fix
1 parent 7775822 commit ac6c09a

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_error_codes/src/error_codes

1 file changed

+2
-2
lines changed

compiler/rustc_error_codes/src/error_codes/E0546.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ To fix the issue you need to provide the `feature` field.
1919
#![feature(staged_api)]
2020
#![stable(since = "1.0.0", feature = "test")]
2121
22-
#[unstable(feature = "unstable_fn", issue = "none")] // ok!!
22+
#[unstable(feature = "unstable_fn", issue = "none")] // ok!
2323
fn unstable_fn() {}
2424
25-
#[stable(feature = "stable_fn", since = "1.0.0")] // ok!!
25+
#[stable(feature = "stable_fn", since = "1.0.0")] // ok!
2626
fn stable_fn() {}
2727
```
2828

0 commit comments

Comments
 (0)