Skip to content

Commit dba94a2

Browse files
author
Benni
committed
Add documentation for the new constructor.
1 parent 6d75eed commit dba94a2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Markdig/Syntax/Inlines/EmphasisDelimiterInline.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ public EmphasisDelimiterInline(InlineParser parser, EmphasisDescriptor descripto
3030
Content = new StringSlice(ToLiteral());
3131
}
3232

33+
/// <summary>
34+
/// Initializes a new instance of the <see cref="EmphasisDelimiterInline" /> class.
35+
/// </summary>
36+
/// <param name="parser">The parser.</param>
37+
/// <param name="descriptor">The descriptor.</param>
38+
/// <param name="content">The content.</param>
39+
/// <exception cref="ArgumentNullException"></exception>
3340
internal EmphasisDelimiterInline(InlineParser parser, EmphasisDescriptor descriptor, StringSlice content) : base(parser)
3441
{
3542
if (descriptor is null)

0 commit comments

Comments
 (0)