From d5c3d6da864799d89f75726d27fde0df5185fcf6 Mon Sep 17 00:00:00 2001 From: Gerhard Date: Wed, 13 Oct 2021 17:59:41 +0200 Subject: [PATCH] Typos --- includes/admin/class-wc-admin-addons.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/admin/class-wc-admin-addons.php b/includes/admin/class-wc-admin-addons.php index ed0f2d9d0aa..4f98f8222a7 100644 --- a/includes/admin/class-wc-admin-addons.php +++ b/includes/admin/class-wc-admin-addons.php @@ -776,7 +776,7 @@ class WC_Admin_Addons { if ( ! WC()->is_wc_admin_active() ) { $promotions = array(); } - // Check for existance of promotions and evaluate out if we should show them. + // Check for existence of promotions and evaluate out if we should show them. if ( ! empty( $promotions ) ) { foreach ( $promotions as $promo_id => $promotion ) { $evaluator = new PromotionRuleEngine\RuleEvaluator(); @@ -785,7 +785,7 @@ class WC_Admin_Addons { unset( $promotions[ $promo_id ] ); } } - // Tranform promotions to correct format ready for output. + // Transform promotions to the correct format ready for output. $promotions = self::format_promotions( $promotions ); }