Skip to content

Commit dafda90

Browse files
committed
Merge pull request reduxjs#990 from chentsulin/patch-18
ServerRendering doc: add a missing verb
2 parents c37570d + c6091a2 commit dafda90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/ServerRendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ function handleRender(req, res) {
266266
}
267267
```
268268

269-
Because we `res.send()` inside of the callback, the server will hold open the connection and won’t send any data until that callback executes. You’ll notice a 500ms delay is now added to each server request as a result of our new API call. A more advanced usage would handle errors in the API gracefully, such as a bad response or timeout.
269+
Because we call `res.send()` inside of the callback, the server will hold open the connection and won’t send any data until that callback executes. You’ll notice a 500ms delay is now added to each server request as a result of our new API call. A more advanced usage would handle errors in the API gracefully, such as a bad response or timeout.
270270

271271
### Security Considerations
272272

0 commit comments

Comments
 (0)