From a3bb664658047111660722c130f6b564132917f3 Mon Sep 17 00:00:00 2001 From: Chris Blakley Date: Wed, 5 Feb 2025 10:46:22 -0500 Subject: [PATCH] Fixed typos --- src/event.lib.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/event.lib.php b/src/event.lib.php index e36f7f0b..b63f5683 100644 --- a/src/event.lib.php +++ b/src/event.lib.php @@ -505,7 +505,7 @@ private static function reportEvent($severity = 0, $message = '') /** * Reports a debug event on the website. * - * @param string $message Text witht the explanation of the event or action performed. + * @param string $message Text with the explanation of the event or action performed. * @return bool Either true or false depending on the success of the operation. */ public static function reportDebugEvent($message = '') @@ -516,7 +516,7 @@ public static function reportDebugEvent($message = '') /** * Reports a notice event on the website. * - * @param string $message Text witht the explanation of the event or action performed. + * @param string $message Text with the explanation of the event or action performed. * @return bool Either true or false depending on the success of the operation. */ public static function reportNoticeEvent($message = '') @@ -527,7 +527,7 @@ public static function reportNoticeEvent($message = '') /** * Reports a info event on the website. * - * @param string $message Text witht the explanation of the event or action performed. + * @param string $message Text with the explanation of the event or action performed. * @return bool Either true or false depending on the success of the operation. */ public static function reportInfoEvent($message = '') @@ -538,7 +538,7 @@ public static function reportInfoEvent($message = '') /** * Reports a warning event on the website. * - * @param string $message Text witht the explanation of the event or action performed. + * @param string $message Text with the explanation of the event or action performed. * @return bool Either true or false depending on the success of the operation. */ public static function reportWarningEvent($message = '') @@ -549,7 +549,7 @@ public static function reportWarningEvent($message = '') /** * Reports a error event on the website. * - * @param string $message Text witht the explanation of the event or action performed. + * @param string $message Text with the explanation of the event or action performed. * @return bool Either true or false depending on the success of the operation. */ public static function reportErrorEvent($message = '') @@ -560,7 +560,7 @@ public static function reportErrorEvent($message = '') /** * Reports a critical event on the website. * - * @param string $message Text witht the explanation of the event or action performed. + * @param string $message Text with the explanation of the event or action performed. * @return bool Either true or false depending on the success of the operation. */ public static function reportCriticalEvent($message = '')