We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c7a31 commit 1fe7c3dCopy full SHA for 1fe7c3d
RestSharp.MonoTouch/Extensions/ResponseStatusExtensions.cs
@@ -18,7 +18,7 @@ public static WebException ToWebException(this ResponseStatus responseStatus)
18
case ResponseStatus.None:
19
return new WebException("The request could not be processed.", WebExceptionStatus.ServerProtocolViolation);
20
case ResponseStatus.Error:
21
- return new WebException("An error occured while processing the request.", WebExceptionStatus.ServerProtocolViolation);
+ return new WebException("An error occurred while processing the request.", WebExceptionStatus.ServerProtocolViolation);
22
case ResponseStatus.TimedOut:
23
return new WebException("The request timed-out.", WebExceptionStatus.Timeout);
24
case ResponseStatus.Aborted:
0 commit comments