improve error note

This commit is contained in:
Axary 2018-11-20 14:43:16 +01:00
parent 5bfdcc1ab1
commit 88d60941da
7 changed files with 7 additions and 7 deletions

View file

@ -1828,7 +1828,7 @@ impl<'a> Parser<'a> {
let mut err = self.struct_span_err(self.prev_span,
"unexpected `self` argument in function");
err.span_label(self.prev_span,
"`self` is only valid as the first argument of a trait function");
"`self` is only valid as the first argument of an associated function");
return Err(err);
}