Fixed: missing commas to option table.
This commit is contained in:
parent
41f69f76bb
commit
af3950c65e
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
-- options
|
-- options
|
||||||
newoption {
|
newoption {
|
||||||
trigger = "var-alloc",
|
trigger = "var-alloc",
|
||||||
value = "MODE"
|
value = "MODE",
|
||||||
description = "Sets how the compiler should allocate variables"
|
description = "Sets how the compiler should allocate variables",
|
||||||
allowed = {
|
allowed = {
|
||||||
{ "pack", "Recycle slices as they become unused" },
|
{ "pack", "Recycle slices as they become unused" },
|
||||||
{ "inc", "Every variable gets its own slice" }
|
{ "inc", "Every variable gets its own slice" }
|
||||||
|
|
Loading…
Reference in a new issue