From 521bce896cecb055a469602bff5e902a894996b1 Mon Sep 17 00:00:00 2001 From: Sam Zhou Date: Wed, 18 Nov 2020 00:31:13 -0500 Subject: [PATCH] fix: Fix typo in react-reconciler docs peristent -> persistent --- 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 d1accf49b12f0..a084df179abcd 100644 --- a/packages/react-reconciler/README.md +++ b/packages/react-reconciler/README.md @@ -69,7 +69,7 @@ At the moment, we can't commit to documenting every API detail because the host #### Modes -The reconciler has two modes: mutation mode and peristent mode. You must specify one of them. +The reconciler has two modes: mutation mode and persistent mode. You must specify one of them. If your target platform is similar to the DOM and has methods similar to `appendChild`, `removeChild`, and so on, you'll want to use the **mutation mode**. This is the same mode used by React DOM, React ART, and the classic React Native renderer.