Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/Recaptcha.Web-net45/RecaptchaVerificationHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public RecaptchaVerificationResult VerifyRecaptchaResponse()
{
if (string.IsNullOrEmpty(Response))
{
throw new InvalidOperationException("Reponse is emptry.");
throw new InvalidOperationException("Reponse is empty.");
}

string secretKey = SecretKey;
Expand All @@ -123,7 +123,7 @@ public Task<RecaptchaVerificationResult> VerifyRecaptchaResponseTaskAsync()
{
if (string.IsNullOrEmpty(Response))
{
throw new InvalidOperationException("Reponse is emptry.");
throw new InvalidOperationException("Reponse is empty.");
}

string secretKey = SecretKey;
Expand Down Expand Up @@ -232,4 +232,4 @@ private RecaptchaVerificationResult VerifyRecpatcha2Response(string secretKey)

#endregion Private Methods
}
}
}