Corrected grammar in ‘getting started‘

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
This commit is contained in:
Steven Luscher 2017-12-05 01:39:03 -08:00 committed by Facebook Github Bot
parent dfa05cbcd4
commit 989d209e5d
1 changed files with 1 additions and 1 deletions

View File

@ -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) => {