From 373b297c5534f5ff741bb011baefec0f7e0d1cb5 Mon Sep 17 00:00:00 2001 From: Sam Zhou Date: Tue, 8 Dec 2020 10:40:05 -0500 Subject: [PATCH] fix: Fix typo in react-reconciler docs (#20284) 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 d1accf49b1..a084df179a 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.