Skip to content

Commit

Permalink
Remove obvious parameter label
Browse files Browse the repository at this point in the history
  • Loading branch information
iamcarbon committed Mar 14, 2021
1 parent b2306db commit 397de86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Markdig/Parsers/Inlines/AutolinkInlineParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public override bool Match(InlineProcessor processor, ref StringSlice slice)
int column;
if (LinkHelper.TryParseAutolink(ref slice, out string? link, out bool isEmail))
{
processor.Inline = new AutolinkInline(url: link)
processor.Inline = new AutolinkInline(link)
{
IsEmail = isEmail,
Span = new SourceSpan(processor.GetSourcePosition(saved.Start, out line, out column), processor.GetSourcePosition(slice.Start - 1)),
Expand Down

0 comments on commit 397de86

Please sign in to comment.