mirror of https://github.com/status-im/metro.git
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:
parent
dfa05cbcd4
commit
989d209e5d
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue