From 381087d56ac76275e4002b324f529260b16aa27f Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 8 Mar 2021 15:28:17 +0900 Subject: [PATCH] Fix typo in ast_validation.rs identifer -> identifier --- compiler/rustc_ast_passes/src/ast_validation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_ast_passes/src/ast_validation.rs b/compiler/rustc_ast_passes/src/ast_validation.rs index 563bcda519065..7a4cc7d4815be 100644 --- a/compiler/rustc_ast_passes/src/ast_validation.rs +++ b/compiler/rustc_ast_passes/src/ast_validation.rs @@ -592,7 +592,7 @@ impl<'a> AstValidator<'a> { self.session, ident.span, E0754, - "trying to load file for module `{}` with non ascii identifer name", + "trying to load file for module `{}` with non ascii identifier name", ident.name ) .help("consider using `#[path]` attribute to specify filesystem path")