From 0040efc8d85923d64bee1fdf7e9029d65d01b751 Mon Sep 17 00:00:00 2001 From: Heaven Date: Sun, 2 Sep 2018 03:40:17 +0800 Subject: [PATCH] Fix a typo (#13531) --- packages/react-reconciler/src/ReactFiberPendingPriority.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-reconciler/src/ReactFiberPendingPriority.js b/packages/react-reconciler/src/ReactFiberPendingPriority.js index 3e93ccbcfd..0e5c606376 100644 --- a/packages/react-reconciler/src/ReactFiberPendingPriority.js +++ b/packages/react-reconciler/src/ReactFiberPendingPriority.js @@ -253,7 +253,7 @@ function findNextExpirationTimeToWorkOn(completedExpirationTime, root) { let nextExpirationTimeToWorkOn = earliestPendingTime !== NoWork ? earliestPendingTime : latestPingedTime; - // If there is no pending or pinted work, check if there's suspended work + // If there is no pending or pinged work, check if there's suspended work // that's lower priority than what we just completed. if ( nextExpirationTimeToWorkOn === NoWork &&