From 0a7beebf2be734f8b65f004b896417c6830e583a Mon Sep 17 00:00:00 2001 From: Bob Ziroll Date: Tue, 8 Oct 2019 20:55:41 -0600 Subject: [PATCH] Fix typo in the React API Reference `React.Suspense` section (#2412) Alternatively, "`React.Suspense` allows you to specify..." --- content/docs/reference-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/reference-react.md b/content/docs/reference-react.md index 0861b58d..cdb782de 100644 --- a/content/docs/reference-react.md +++ b/content/docs/reference-react.md @@ -333,7 +333,7 @@ Note that rendering `lazy` components requires that there's a `` ### `React.Suspense` {#reactsuspense} -`React.Suspense` let you specify the loading indicator in case some components in the tree below it are not yet ready to render. Today, lazy loading components is the **only** use case supported by ``: +`React.Suspense` lets you specify the loading indicator in case some components in the tree below it are not yet ready to render. Today, lazy loading components is the **only** use case supported by ``: ```js // This component is loaded dynamically