From 0e2e5cb8bc3303878a74959a27593cbb9cf94ea9 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Mon, 17 Feb 2020 10:02:44 -0500 Subject: [PATCH] Add period to mixin error message --- src/mixin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixin.rs b/src/mixin.rs index 33de329..f1ee5e6 100644 --- a/src/mixin.rs +++ b/src/mixin.rs @@ -43,7 +43,7 @@ impl Mixin { kind: TokenKind::Symbol(Symbol::OpenCurlyBrace), .. }) => FuncArgs::new(), - _ => return Err("expected \"{\"".into()), + _ => return Err("expected \"{\".".into()), }; devour_whitespace(toks);