diff --git a/src/Vetuviem.SourceGenerator/Features/ControlBindingModels/ControlBoundControlBindingModelClassGenerator.cs b/src/Vetuviem.SourceGenerator/Features/ControlBindingModels/ControlBoundControlBindingModelClassGenerator.cs index 66c4e682..df4db844 100644 --- a/src/Vetuviem.SourceGenerator/Features/ControlBindingModels/ControlBoundControlBindingModelClassGenerator.cs +++ b/src/Vetuviem.SourceGenerator/Features/ControlBindingModels/ControlBoundControlBindingModelClassGenerator.cs @@ -50,7 +50,8 @@ protected override string GetClassNameIdentifier(INamedTypeSymbol namedTypeSymbo /// protected override string GetConstructorSummaryText(string className, TypeParameterListSyntax typeParameterList) { - return $"Initializes a new instance of the class."; + var typeParams = string.Join(", ", typeParameterList.Parameters.Select(s => s.Identifier.ValueText)); + return $"Initializes a new instance of the class."; } ///