From 83800d74869b846de1a7e74e8cf547c803b7a1ab Mon Sep 17 00:00:00 2001 From: David Joos Date: Mon, 29 Jan 2018 16:18:02 +0000 Subject: [PATCH] Fix typo (#441) sill > still --- src/Mailgun/Exception/HttpServerException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mailgun/Exception/HttpServerException.php b/src/Mailgun/Exception/HttpServerException.php index 0bb3264..857b648 100644 --- a/src/Mailgun/Exception/HttpServerException.php +++ b/src/Mailgun/Exception/HttpServerException.php @@ -18,7 +18,7 @@ final class HttpServerException extends \RuntimeException implements Exception { public static function serverError($httpStatus = 500) { - return new self('An unexpected error occurred at Mailgun\'s servers. Try again later and contact support if the error sill exists.', $httpStatus); + return new self('An unexpected error occurred at Mailgun\'s servers. Try again later and contact support if the error still exists.', $httpStatus); } public static function networkError(\Exception $previous)