From 6e3931781724d74a2dde32068aa6b832f226d7c7 Mon Sep 17 00:00:00 2001 From: timmy471 Date: Tue, 22 Oct 2024 10:27:56 +0100 Subject: [PATCH] docs: fix typos in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8de17ec9ea..52d8a5c666 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ const snapshot = App(); In order to update the interface to reflect the new state, React needs to compare the previous snapshot to the new snapshot (_called "diffing"_). React's reconciler will go to each element in the previous snapshot and compare it to the new snapshot. If the element is the same, it will skip it. If the element is different, it will update it. - The `
` tag is the same, so it doesn't need to be updated. ✅ - - The `

` tag is the same, so it doesn't needs to be updated. ✅ + - The `

` tag is the same, so it doesn't need to be updated. ✅ - The text inside the `

` tag is different, so it needs to be updated. ⚠ ️ - The `