Skip to content

Commit

Permalink
ITypeSymbolExtensions.GetDebugString(): fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sholtee committed Jan 11, 2021
1 parent b6bc35c commit 79e47c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SRC/Private/Extensions/Symbol/ITypeSymbolExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,10 @@ public static string GetDebugString(this ITypeSymbol src)
sb.AppendLine($" {method.ToDisplayString(fmt)};");

foreach (IPropertySymbol property in src.ListProperties(includeStatic: true))
sb.AppendLine($" {property.ToDisplayString(fmt)};");
sb.AppendLine($" {property.ToDisplayString(fmt)}");

foreach (IEventSymbol evt in src.ListEvents(includeStatic: true))
sb.AppendLine($" {evt.ToDisplayString(fmt)};");
sb.AppendLine($" {evt.ToDisplayString(fmt)}");

sb.Append("}");

Expand Down

0 comments on commit 79e47c2

Please sign in to comment.