From 262509081fe6e14af5352a39fef4e21023b13e70 Mon Sep 17 00:00:00 2001 From: Hollow Man Date: Fri, 20 Nov 2020 00:59:03 +0800 Subject: [PATCH] Fix typo Signed-off-by: Hollow Man --- packages/react-reconciler/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-reconciler/README.md b/packages/react-reconciler/README.md index d1accf49b12f..fa8ec17328f7 100644 --- a/packages/react-reconciler/README.md +++ b/packages/react-reconciler/README.md @@ -121,7 +121,7 @@ This method happens **in the render phase**. It can mutate `parentInstance` and #### `finalizeInitialChildren(instance, type, props, rootContainer, hostContext)` -In this method, you can perform some final mutations on the `instance`. Unlike with `createInstance`, by the time `finalizeInitialChildren` is called, all the initial children have already been addded to the `instance`, but the instance itself has not yet been connected to the tree on the screen. +In this method, you can perform some final mutations on the `instance`. Unlike with `createInstance`, by the time `finalizeInitialChildren` is called, all the initial children have already been added to the `instance`, but the instance itself has not yet been connected to the tree on the screen. This method happens **in the render phase**. It can mutate `instance`, but it must not modify any other nodes. It's called while the tree is still being built up and not connected to the actual tree on the screen.