aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nimterop/grammar.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/nimterop/grammar.nim b/nimterop/grammar.nim
index 3caeb3d..f767ce6 100644
--- a/nimterop/grammar.nim
+++ b/nimterop/grammar.nim
@@ -149,7 +149,7 @@ proc initGrammar() =
if i < gStateRT.data.len and gStateRT.data[i].name in ["identifier", "number_literal"]:
let
flen = gStateRT.data[i].val.getIdentifier()
- gStateRT.typeStr &= &" {name}*: = {aptr}array[{flen}, {tptr}{typ}]\n"
+ gStateRT.typeStr &= &" {name}* = {aptr}array[{flen}, {tptr}{typ}]\n"
else:
if name == typ or typ == "object":
gStateRT.typeStr &= &" {name}* = object\n"