From 989d209e5dfe93367e6bc46f6151819d878c1d12 Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Tue, 5 Dec 2017 01:39:03 -0800 Subject: [PATCH] =?UTF-8?q?Corrected=20grammar=20in=20=E2=80=98getting=20s?= =?UTF-8?q?tarted=E2=80=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Active voice, etc. Closes https://github.com/facebook/metro/pull/102 Reviewed By: cpojer Differential Revision: D6484141 Pulled By: steveluscher fbshipit-source-id: c54c6c719497ee9612b816e9a3de4ca5fea8f4a5 --- docs/GettingStarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 5d7caecd..989f558b 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -51,7 +51,7 @@ const httpServer = http.createServer( httpServer.listen(8081); ``` -In order to be also compatible with express apps, processRequest will also call its third parameter when the request could not be handled by Metro bundler. This will allow you integrating the server in your existing server, or extend a new one: +In order to be also compatible with express apps, processRequest will also call its third parameter when the request could not be handled by Metro bundler. This allows you to integrate the server with your existing server, or to extend a new one: ```js const httpServer = http.createServer((req, res) => {