Skip to content

Commit

Permalink
pre-reserve 64k for documentation generation
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessRTFM committed Jan 29, 2024
1 parent 9ddd9a4 commit b83b6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WoLua/Lua/Docs/LuadocGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static string GenerateLuadoc() {
);
HashSet<Type> documented = new();

StringBuilder docs = new(1024 * 32); // the first run of the dumper produced ~20k, so 32k should be good
StringBuilder docs = new(1024 * 64); // the first run of the dumper produced ~20k, so 64k should be good for a bit
docs.AppendLine("---@meta");
docs.AppendLine();
docs.AppendLine();
Expand Down

0 comments on commit b83b6f3

Please sign in to comment.