Skip to content

Commit 9b9aa57

Browse files
when the spelling mistakes in json data
1 parent cfd1519 commit 9b9aa57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rctc/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ static void ReturnCompilationData(Compilation compilation)
647647

648648
// finalizing
649649
data.Globals = globals.ToArray();
650-
data.Variable = variables.ToArray();
650+
data.Variables = variables.ToArray();
651651
data.Functions = functions.ToArray();
652652
data.Classes = classes.ToArray();
653653
data.Enums = enums.ToArray();
@@ -830,7 +830,7 @@ class ReturnCompilationData
830830
{
831831

832832
public ReCTGlobal[] Globals { get; set; }
833-
public ReCTVariable[] Variable { get; set; }
833+
public ReCTVariable[] Variables { get; set; }
834834
public ReCTFunction[] Functions { get; set; }
835835
public ReCTClass[] Classes { get; set; }
836836
public ReCTEnum[] Enums { get; set; }

0 commit comments

Comments
 (0)