got bool wrong

This commit is contained in:
Adam Hathcock
2024-09-03 09:47:30 +01:00
parent f1bfeaa756
commit edf5168446
@@ -15,7 +15,7 @@ internal static class SymbolExtensions
return t.Name; return t.Name;
} }
if (typeSymbol.SpecialType == SpecialType.None) if (typeSymbol.SpecialType != SpecialType.None)
{ {
return typeSymbol.ToString(); return typeSymbol.ToString();
} }