Skip to content

Commit

Permalink
[dotnet] missing semicolon preventing build
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Sep 29, 2021
1 parent cde3c8a commit c2e6b58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void AddHeader(string headerName, string headerValue)

if (headerValue == null)
{
throw new ArgumentNullException("headerValue", "Header value may not be null.")
throw new ArgumentNullException("headerValue", "Header value may not be null.");
}

this.headers[headerName] = headerValue;
Expand Down

0 comments on commit c2e6b58

Please sign in to comment.