From 916df412f5b6f7fb9bcfb705a3c8c23e35304410 Mon Sep 17 00:00:00 2001 From: Thomas Renes Date: Sat, 8 Jan 2022 16:25:17 +0100 Subject: Fix various typos and spelling errors in documentation, comments and code. (#4134) --- lib/Minz/ExtensionException.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Minz/ExtensionException.php') diff --git a/lib/Minz/ExtensionException.php b/lib/Minz/ExtensionException.php index ab4c5c419..b86a97798 100644 --- a/lib/Minz/ExtensionException.php +++ b/lib/Minz/ExtensionException.php @@ -3,9 +3,9 @@ class Minz_ExtensionException extends Minz_Exception { public function __construct ($message, $extension_name = false, $code = self::ERROR) { if ($extension_name) { - $message = 'An error occured in `' . $extension_name . '` extension with the message: ' . $message; + $message = 'An error occurred in `' . $extension_name . '` extension with the message: ' . $message; } else { - $message = 'An error occured in an unnamed extension with the message: ' . $message; + $message = 'An error occurred in an unnamed extension with the message: ' . $message; } parent::__construct($message, $code); -- cgit v1.2.3