From 410fc9da3b8c31b87e749a538a96e76fa5e2aded Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 21 Apr 2020 21:40:29 +0200 Subject: [PATCH] Clean up E0554 explanation --- src/librustc_error_codes/error_codes/E0554.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_error_codes/error_codes/E0554.md b/src/librustc_error_codes/error_codes/E0554.md index e25212983ebcc..e55fa4c6ede8b 100644 --- a/src/librustc_error_codes/error_codes/E0554.md +++ b/src/librustc_error_codes/error_codes/E0554.md @@ -1,7 +1,7 @@ Feature attributes are only allowed on the nightly release channel. Stable or beta compilers will not comply. -Example of erroneous code (on a stable compiler): +Erroneous code example: ```ignore (depends on release channel) #![feature(non_ascii_idents)] // error: `#![feature]` may not be used on the