From 81681dda2ac924129d94258c792013233bfad3da Mon Sep 17 00:00:00 2001 From: David Cho-Lerat Date: Mon, 9 Mar 2020 13:55:30 +0100 Subject: [PATCH] Fix small typo in concurrent-mode-adoption.md (#2531) "You can use in new code" => "You can use them in new code" --- content/docs/concurrent-mode-adoption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/concurrent-mode-adoption.md b/content/docs/concurrent-mode-adoption.md index 8d7ed8cbc..347a7a110 100644 --- a/content/docs/concurrent-mode-adoption.md +++ b/content/docs/concurrent-mode-adoption.md @@ -54,7 +54,7 @@ We're using this code in production (and it works for us) but there are still so ### Enabling Concurrent Mode {#enabling-concurrent-mode} -Normally, when we add features to React, you can start using them immediately. Fragments, Context, and even Hooks are examples of such features. You can use in new code without making any changes to the existing code. +Normally, when we add features to React, you can start using them immediately. Fragments, Context, and even Hooks are examples of such features. You can use them in new code without making any changes to the existing code. Concurrent Mode is different. It introduces semantic changes to how React works. Otherwise, the [new features](/docs/concurrent-mode-patterns.html) enabled by it *wouldn't be possible*. This is why they're grouped into a new "mode" rather than released one by one in isolation.