From a8e5cc424f7d798b101584fa55bdb406ff213856 Mon Sep 17 00:00:00 2001 From: Leigh Halliday Date: Thu, 25 Oct 2018 12:59:31 -0400 Subject: [PATCH] Fixing a small grammer mistake on the code-splitting page --- content/docs/code-splitting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/code-splitting.md b/content/docs/code-splitting.md index 132fa99a..091ea3dd 100644 --- a/content/docs/code-splitting.md +++ b/content/docs/code-splitting.md @@ -117,7 +117,7 @@ parse the dynamic import syntax but is not transforming it. For that you will ne > > `React.lazy` and Suspense is not yet available for server-side rendering. If you want to do code-splitting in a server rendered app, we still recommend [React Loadable](https://github.com/thejameskyle/react-loadable). It has a nice [guide for bundle splitting with server-side rendering](https://github.com/thejameskyle/react-loadable#------------server-side-rendering). -The `React.lazy` function lets you render an dynamic import as a regular component. +The `React.lazy` function lets you render a dynamic import as a regular component. **Before:**