Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Fix a typo in TokenErrorResult.cs #2742

Merged
merged 1 commit into from
Nov 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Endpoints/Results/TokenErrorResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal class TokenErrorResult : IEndpointResult

public TokenErrorResult(TokenErrorResponse error)
{
if (error.Error.IsMissing()) throw new ArgumentNullException("Error must be set", nameof(error.Error));
if (error.Error.IsMissing()) throw new ArgumentNullException(nameof(error.Error), "Error must be set");

Response = error;
}
Expand Down Expand Up @@ -52,4 +52,4 @@ internal class ResultDto
public string error_description { get; set; }
}
}
}
}