diff --git a/_includes/api/en/4x/app-listen.md b/_includes/api/en/4x/app-listen.md index e7bcb8c85..b2ab21c3e 100644 --- a/_includes/api/en/4x/app-listen.md +++ b/_includes/api/en/4x/app-listen.md @@ -25,7 +25,7 @@ http.createServer(app).listen(80); https.createServer(options, app).listen(443); ~~~ -The `app.listen()` method is a convenience method for the following (for HTTP only): +The `app.listen()` method returns an [http.Server](https://nodejs.org/api/http.html#http_class_http_server) object and (for HTTP) is a convenience method for the following: ~~~js app.listen = function() {