Skip to content

Commit

Permalink
Add documentation for the new constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benni committed Aug 29, 2023
1 parent 6d75eed commit dba94a2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Markdig/Syntax/Inlines/EmphasisDelimiterInline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ public EmphasisDelimiterInline(InlineParser parser, EmphasisDescriptor descripto
Content = new StringSlice(ToLiteral());
}

/// <summary>
/// Initializes a new instance of the <see cref="EmphasisDelimiterInline" /> class.
/// </summary>
/// <param name="parser">The parser.</param>
/// <param name="descriptor">The descriptor.</param>
/// <param name="content">The content.</param>
/// <exception cref="ArgumentNullException"></exception>
internal EmphasisDelimiterInline(InlineParser parser, EmphasisDescriptor descriptor, StringSlice content) : base(parser)
{
if (descriptor is null)
Expand Down

0 comments on commit dba94a2

Please sign in to comment.