Skip to content

Commit bc59a07

Browse files
authored
Fix syntax error in CreateBoldRun method for CROSS_PLATFORM (#3694)
1 parent 067680e commit bc59a07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ILSpy/TreeNodes/AssemblyTreeNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public override object ToolTip {
191191
private static Bold CreateBoldRun(string text)
192192
{
193193
#if CROSS_PLATFORM
194-
return new Bold().Add(new Run(text)));
194+
return new Bold().Add(new Run(text));
195195
#else
196196
return new Bold(new Run(text));
197197
#endif

0 commit comments

Comments
 (0)