From 16ebb99dbec14b6814eeb063bb451477666de73a Mon Sep 17 00:00:00 2001 From: BuffayBu Date: Tue, 15 Jan 2019 09:29:40 +0800 Subject: [PATCH] Fix grammar (#3331) --- docs/recipes/ServerRendering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/ServerRendering.md b/docs/recipes/ServerRendering.md index ff8843e964..1e4de19d29 100644 --- a/docs/recipes/ServerRendering.md +++ b/docs/recipes/ServerRendering.md @@ -76,7 +76,7 @@ app.listen(port) ### Handling the Request -The first thing that we need to do on every request is create a new Redux store instance. The only purpose of this store instance is to provide the initial state of our application. +The first thing that we need to do on every request is to create a new Redux store instance. The only purpose of this store instance is to provide the initial state of our application. When rendering, we will wrap ``, our root component, inside a `` to make the store available to all components in the component tree, as we saw in [Usage with React](../basics/UsageWithReact.md).