Skip to content

Commit 80c7a31

Browse files
committed
fix typo
1 parent aba7d74 commit 80c7a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RestSharp.MonoDroid/Extensions/ResponseStatusExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static WebException ToWebException(this ResponseStatus responseStatus)
1818
case ResponseStatus.None:
1919
return new WebException("The request could not be processed.", WebExceptionStatus.ServerProtocolViolation);
2020
case ResponseStatus.Error:
21-
return new WebException("An error occured while processing the request.", WebExceptionStatus.ServerProtocolViolation);
21+
return new WebException("An error occurred while processing the request.", WebExceptionStatus.ServerProtocolViolation);
2222
case ResponseStatus.TimedOut:
2323
return new WebException("The request timed-out.", WebExceptionStatus.Timeout);
2424
case ResponseStatus.Aborted:

0 commit comments

Comments
 (0)