From fb28e9048292f3c74d056370852e3da49ea5ede2 Mon Sep 17 00:00:00 2001 From: Brendan McLoughlin Date: Wed, 24 Apr 2019 06:03:51 -0400 Subject: [PATCH] Add missing word to code comment for clarity (#15443) --- packages/scheduler/src/Scheduler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/scheduler/src/Scheduler.js b/packages/scheduler/src/Scheduler.js index 339ed21964ef2..c3f65a6a03b33 100644 --- a/packages/scheduler/src/Scheduler.js +++ b/packages/scheduler/src/Scheduler.js @@ -343,8 +343,8 @@ function unstable_scheduleCallback( }; // Insert the new callback into the list, ordered first by expiration, then - // by insertion. So the new callback is inserted any other callback with - // equal expiration. + // by insertion. So the new callback is inserted after any other callback + // with equal expiration. if (firstCallbackNode === null) { // This is the first callback in the list. firstCallbackNode = newNode.next = newNode.previous = newNode;