Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Figgle.Generator/EmbedFontSourceGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ namespace Figgle
internal sealed class {{AttributeName}} : Attribute
{
/// <summary>
/// The name of the property to add, whose getter will return the embedded <see cref="FiggleFont" />.
/// The name of the property to add, whose getter will return the embedded <c>FiggleFont</c>.
/// </summary>
public string MemberName { get; }

Expand All @@ -114,7 +114,7 @@ internal sealed class {{AttributeName}} : Attribute
/// <summary>
/// Initializes a new instance of the <see cref="{{AttributeName}}"/> class.
/// </summary>
/// <param name="memberName">The name of the property to add, whose getter returns the embedded <paramref name="FiggleFont" />.</param>
/// <param name="memberName">The name of the property to add, whose getter returns the embedded <c>FiggleFont</c>.</param>
/// <param name="fontName">The name of the font to use when rendering the text.</param>
public {{AttributeName}}(string memberName, string fontName)
{
Expand Down