Skip to content

Commit

Permalink
Update BreakingChangeIssue.cs (Azure#18802)
Browse files Browse the repository at this point in the history
  • Loading branch information
isra-fel authored Jun 29, 2022
1 parent ad4531a commit c1194a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public IReportRecord Parse(string line)
var match = Regex.Match(line, matcher);
if (!match.Success || match.Groups.Count < 8)
{
throw new InvalidOperationException(string.Format("Could not parse '{0}' as HelpIssue record", line));
throw new InvalidOperationException(string.Format("Could not parse '{0}' as BreakingChangeIssue record", line));
}

AssemblyFileName = match.Groups[1].Value;
Expand Down

0 comments on commit c1194a5

Please sign in to comment.