Fix error message

I'm not entirely sure if the message is still correct, it seems to have survived a number of refactors, but it is mangled english anyway.
This commit is contained in:
Mario Carneiro 2021-08-30 02:36:21 -07:00 committed by GitHub
parent 1636f61a15
commit 6e8dedadcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -366,7 +366,7 @@ fn macro_expand(db: &dyn AstDatabase, id: MacroCallId) -> ExpandResult<Option<Ar
let macro_arg = match db.macro_arg(id) { let macro_arg = match db.macro_arg(id) {
Some(it) => it, Some(it) => it,
None => return ExpandResult::str_err("Fail to args in to tt::TokenTree".into()), None => return ExpandResult::str_err("Fail to lower args to token tree".into()),
}; };
let macro_rules = match db.macro_def(loc.def) { let macro_rules = match db.macro_def(loc.def) {