From 82c3d668470148e941b45d17a56297f2f4885930 Mon Sep 17 00:00:00 2001 From: collin Date: Wed, 21 Oct 2020 11:44:57 -0700 Subject: [PATCH] remove required space after subtraction operator --- ast/src/leo.pest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast/src/leo.pest b/ast/src/leo.pest index 71024b6439..e695e3bb9f 100644 --- a/ast/src/leo.pest +++ b/ast/src/leo.pest @@ -114,7 +114,7 @@ operation_gt = { ">" } operation_le = { "<=" } operation_lt = { "<" } operation_add = { "+" } -operation_sub = { "- " } +operation_sub = { "-" } operation_mul = { "*" } operation_div = { "/" } operation_pow = { "**" }