Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusprubio committed Feb 6, 2021
1 parent 7775822 commit ac6c09a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/rustc_error_codes/src/error_codes/E0546.md
Expand Up @@ -19,10 +19,10 @@ To fix the issue you need to provide the `feature` field.
#![feature(staged_api)]
#![stable(since = "1.0.0", feature = "test")]
#[unstable(feature = "unstable_fn", issue = "none")] // ok!!
#[unstable(feature = "unstable_fn", issue = "none")] // ok!
fn unstable_fn() {}
#[stable(feature = "stable_fn", since = "1.0.0")] // ok!!
#[stable(feature = "stable_fn", since = "1.0.0")] // ok!
fn stable_fn() {}
```

Expand Down

0 comments on commit ac6c09a

Please sign in to comment.