Skip to content

Commit

Permalink
Add missing semicolon on the GreenTreeWriter.
Browse files Browse the repository at this point in the history
  • Loading branch information
GGG-KILLER committed Jan 28, 2024
1 parent b106a77 commit f6c3eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tsu.Trees.RedGreen/sourcegen/GreenTreeWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private static void WriteGreenConstructor(this IndentedTextWriter writer, Node n
if (node.Children.Length > byte.MaxValue)
writer.WriteLine("this.SlotCount = byte.MaxValue;");
else
writer.WriteLine($"this.SlotCount = {node.Children.Length}");
writer.WriteLine($"this.SlotCount = {node.Children.Length};");
}

foreach (var component in node.ExtraData)
Expand Down

0 comments on commit f6c3eec

Please sign in to comment.