From 79e17ab2ffdc24b24170eac3abd1475b2116e5bb Mon Sep 17 00:00:00 2001 From: DannyS712 Date: Sat, 17 Jul 2021 02:48:39 +0000 Subject: [PATCH] Typo fix: "the the" -> "the" Bug: T201491 Change-Id: I4e347afbfdd1bbac20e0ac00b9e6a046e7c49a49 --- includes/deferred/DeferredUpdatesScope.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/deferred/DeferredUpdatesScope.php b/includes/deferred/DeferredUpdatesScope.php index 1c70b120cb8..756184ed1de 100644 --- a/includes/deferred/DeferredUpdatesScope.php +++ b/includes/deferred/DeferredUpdatesScope.php @@ -90,7 +90,7 @@ class DeferredUpdatesScope { * @param int $stage One of DeferredUpdates::STAGES */ public function addUpdate( DeferrableUpdate $update, $stage ) { - // Handle the case where the the specified stage must have already passed + // Handle the case where the specified stage must have already passed $stageEffective = max( $stage, $this->activeStage ); $queue =& $this->queueByStage[$stageEffective]; @@ -186,7 +186,7 @@ class DeferredUpdatesScope { // Do everything, all the way to the last "defer until" stage $activeStage = DeferredUpdates::STAGES[count( DeferredUpdates::STAGES ) - 1]; } else { - // Handle the case where the the specified stage must have already passed + // Handle the case where the specified stage must have already passed $activeStage = max( $stage, $this->activeStage ); }