Remove "this"

This commit is contained in:
Jonas Schievink 2015-11-24 16:34:48 +01:00
parent d4a0e545e7
commit 52d3de7a7e

View File

@ -58,7 +58,7 @@ impl<'a> ParserAnyMacro<'a> {
parser.span_err(span, &msg[..]); parser.span_err(span, &msg[..]);
let msg = format!("caused by the macro expansion here; the usage \ let msg = format!("caused by the macro expansion here; the usage \
of `{}!` is likely invalid in this {} context", of `{}!` is likely invalid in {} context",
self.macro_ident, context); self.macro_ident, context);
parser.span_note(self.site_span, &msg[..]); parser.span_note(self.site_span, &msg[..]);
} }