From 3e295edd52672518db91af2a457677ee0b6953a1 Mon Sep 17 00:00:00 2001 From: Deniz Susman Date: Sun, 10 Feb 2019 03:42:55 +0300 Subject: [PATCH] Typo fix in comment (#14787) --- packages/react-reconciler/src/ReactFiberCommitWork.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react-reconciler/src/ReactFiberCommitWork.js b/packages/react-reconciler/src/ReactFiberCommitWork.js index 1ffb2f0eff4a0..85231dd068bf8 100644 --- a/packages/react-reconciler/src/ReactFiberCommitWork.js +++ b/packages/react-reconciler/src/ReactFiberCommitWork.js @@ -593,7 +593,7 @@ function commitLifeCycles( function hideOrUnhideAllChildren(finishedWork, isHidden) { if (supportsMutation) { - // We only have the top Fiber that was inserted but we need recurse down its + // We only have the top Fiber that was inserted but we need to recurse down its // children to find all the terminal nodes. let node: Fiber = finishedWork; while (true) { @@ -945,7 +945,7 @@ function commitPlacement(finishedWork: Fiber): void { } const before = getHostSibling(finishedWork); - // We only have the top Fiber that was inserted but we need recurse down its + // We only have the top Fiber that was inserted but we need to recurse down its // children to find all the terminal nodes. let node: Fiber = finishedWork; while (true) { @@ -987,7 +987,7 @@ function commitPlacement(finishedWork: Fiber): void { } function unmountHostComponents(current): void { - // We only have the top Fiber that was deleted but we need recurse down its + // We only have the top Fiber that was deleted but we need to recurse down its // children to find all the terminal nodes. let node: Fiber = current;