From 081bb31226919062938ef924472ba1b4170facfc Mon Sep 17 00:00:00 2001 From: Mark Allen Date: Mon, 28 Oct 2019 06:11:02 -0400 Subject: [PATCH] Fix typo in concurrent-mode-patterns.md (#2507) s/MyShowList/MySlowList Updated to reflect actual component name in example: `` --- content/docs/concurrent-mode-patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/concurrent-mode-patterns.md b/content/docs/concurrent-mode-patterns.md index b09168c50..21b7b2bff 100644 --- a/content/docs/concurrent-mode-patterns.md +++ b/content/docs/concurrent-mode-patterns.md @@ -808,7 +808,7 @@ function App() { **[Try it on CodeSandbox](https://codesandbox.io/s/pensive-shirley-wkp46)** -In this example, **every item in `` has an artificial slowdown -- each of them blocks the thread for a few milliseconds**. We'd never do this in a real app, but this helps us simulate what can happen in a deep component tree with no single obvious place to optimize. +In this example, **every item in `` has an artificial slowdown -- each of them blocks the thread for a few milliseconds**. We'd never do this in a real app, but this helps us simulate what can happen in a deep component tree with no single obvious place to optimize. We can see how typing in the input causes stutter. Now let's add `useDeferredValue`: