From 81d4ee9ca5c405dce62f64e61506b8e155f38d8d Mon Sep 17 00:00:00 2001 From: satelllte Date: Fri, 23 Dec 2022 14:22:55 +0200 Subject: [PATCH] reconciler docs: fix small typo - "mode" (instead of "node") (#25863) --- 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 9a3fa5f6485c..2aeb36fbd6ca 100644 --- a/packages/react-reconciler/README.md +++ b/packages/react-reconciler/README.md @@ -81,7 +81,7 @@ const HostConfig = { } ``` -If your target platform has immutable trees, you'll want the **persistent mode** instead. In that mode, existing nodes are never mutated, and instead every change clones the parent tree and then replaces the whole parent tree at the root. This is the node used by the new React Native renderer, codenamed "Fabric". +If your target platform has immutable trees, you'll want the **persistent mode** instead. In that mode, existing nodes are never mutated, and instead every change clones the parent tree and then replaces the whole parent tree at the root. This is the mode used by the new React Native renderer, codenamed "Fabric". ```js const HostConfig = {