remove required space after subtraction operator

This commit is contained in:
collin 2020-10-21 11:44:57 -07:00
parent d00eff2d86
commit 82c3d66847

View File

@ -114,7 +114,7 @@ operation_gt = { ">" }
operation_le = { "<=" } operation_le = { "<=" }
operation_lt = { "<" } operation_lt = { "<" }
operation_add = { "+" } operation_add = { "+" }
operation_sub = { "- " } operation_sub = { "-" }
operation_mul = { "*" } operation_mul = { "*" }
operation_div = { "/" } operation_div = { "/" }
operation_pow = { "**" } operation_pow = { "**" }