Fixed: missing commas to option table.

This commit is contained in:
arookas 2015-12-28 12:33:42 -05:00
parent 41f69f76bb
commit af3950c65e

View file

@ -1,8 +1,8 @@
-- options
newoption {
trigger = "var-alloc",
value = "MODE"
description = "Sets how the compiler should allocate variables"
value = "MODE",
description = "Sets how the compiler should allocate variables",
allowed = {
{ "pack", "Recycle slices as they become unused" },
{ "inc", "Every variable gets its own slice" }