Skip to content

Commit

Permalink
fix bound control ctor (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvreony authored May 27, 2024
1 parent 1c31522 commit d09177c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ protected override string GetClassNameIdentifier(INamedTypeSymbol namedTypeSymbo
/// <inheritdoc />
protected override string GetConstructorSummaryText(string className, TypeParameterListSyntax typeParameterList)
{
return $"Initializes a new instance of the <see cref=\"{className}{{TView, TViewModel}}\"/> class.";
var typeParams = string.Join(", ", typeParameterList.Parameters.Select(s => s.Identifier.ValueText));
return $"Initializes a new instance of the <see cref=\"{className}{{{typeParams}}}\"/> class.";
}

/// <inheritdoc />
Expand Down

0 comments on commit d09177c

Please sign in to comment.