From edf5168446df4d886fcae5aabc74fd19faa3cece Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 3 Sep 2024 09:47:30 +0100 Subject: [PATCH] got bool wrong --- Speckle.InterfaceGenerator/SymbolExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Speckle.InterfaceGenerator/SymbolExtensions.cs b/Speckle.InterfaceGenerator/SymbolExtensions.cs index 0f0167e..7e1fbba 100644 --- a/Speckle.InterfaceGenerator/SymbolExtensions.cs +++ b/Speckle.InterfaceGenerator/SymbolExtensions.cs @@ -15,7 +15,7 @@ internal static class SymbolExtensions return t.Name; } - if (typeSymbol.SpecialType == SpecialType.None) + if (typeSymbol.SpecialType != SpecialType.None) { return typeSymbol.ToString(); }