Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: add missed open curly
  • Loading branch information
annchous committed Nov 8, 2021
commit bf71da45c67c25c0ce3a2957fa91f5eaec982199
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ internal string ToString(bool typed)
result.Append('[');
int count = array.Count;
result.Append(count.ToString());
result.Append(']');
result.Append("] { ");

for (int i = 0; i < count; i++)
{
Expand Down