From 5f594efaf8debc33baafb5b9dafa1bc13cb8a765 Mon Sep 17 00:00:00 2001 From: Bob Ziroll Date: Mon, 9 Mar 2020 07:14:05 -0600 Subject: [PATCH] Fix typo on React 16 Roadmap page (#2433) I believe it was meant to be "news story", but I could be misunderstanding something in the context of the paragraph. --- content/blog/2018-11-27-react-16-roadmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2018-11-27-react-16-roadmap.md b/content/blog/2018-11-27-react-16-roadmap.md index 4fa4e533..248a9564 100644 --- a/content/blog/2018-11-27-react-16-roadmap.md +++ b/content/blog/2018-11-27-react-16-roadmap.md @@ -108,7 +108,7 @@ Hooks represent our vision for the future of React. They solve both problems tha ### React 16.x (~Q2 2019): The One with Concurrent Mode {#react-16x-q2-2019-the-one-with-concurrent-mode} -*Concurrent Mode* lets React apps be more responsive by rendering component trees without blocking the main thread. It is opt-in and allows React to interrupt a long-running render (for example, rendering a new feed story) to handle a high-priority event (for example, text input or hover). Concurrent Mode also improves the user experience of Suspense by skipping unnecessary loading states on fast connections. +*Concurrent Mode* lets React apps be more responsive by rendering component trees without blocking the main thread. It is opt-in and allows React to interrupt a long-running render (for example, rendering a news feed story) to handle a high-priority event (for example, text input or hover). Concurrent Mode also improves the user experience of Suspense by skipping unnecessary loading states on fast connections. >Note >