Add period to mixin error message

This commit is contained in:
ConnorSkees 2020-02-17 10:02:44 -05:00
parent af4917a4e6
commit 0e2e5cb8bc

View File

@ -43,7 +43,7 @@ impl Mixin {
kind: TokenKind::Symbol(Symbol::OpenCurlyBrace),
..
}) => FuncArgs::new(),
_ => return Err("expected \"{\"".into()),
_ => return Err("expected \"{\".".into()),
};
devour_whitespace(toks);