Capitalized ‘Express’

Summary:
It's a brand name.
Closes https://github.com/facebook/metro/pull/103

Reviewed By: cpojer

Differential Revision: D6484138

Pulled By: steveluscher

fbshipit-source-id: 98d0aa9a2a7da1068b12a918b83c9a83bc19f4ae
This commit is contained in:
Steven Luscher 2017-12-05 11:15:37 -08:00 committed by Facebook Github Bot
parent 0e583a981f
commit 31eb3a6529
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 allows you to integrate the server with your existing server, or to 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) => {