From 663b103bc5019e50399b92d3e390f96b56c2f475 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 3 Jul 2016 22:55:23 -0700 Subject: [PATCH] doc: fix minor style issues in http.md PR-URL: https://github.com/nodejs/node/pull/7528 Reviewed-By: Anna Henningsen --- doc/api/http.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/api/http.md b/doc/api/http.md index 93d28a4f35d46f..1a09e96395c7b8 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -676,8 +676,8 @@ already been bound to a port or domain socket. Listening on a file descriptor is not supported on Windows. -This function is asynchronous. The last parameter `callback` will be added as -a listener for the `'listening'` event. See also [`net.Server.listen()`][]. +This function is asynchronous. `callback` will be added as a listener for the +`'listening'` event. See also [`net.Server.listen()`][]. Returns `server`. @@ -688,8 +688,8 @@ added: v0.1.90 Start a UNIX socket server listening for connections on the given `path`. -This function is asynchronous. The last parameter `callback` will be added as -a listener for the `'listening'` event. See also [`net.Server.listen(path)`][]. +This function is asynchronous. `callback` will be added as a listener for the +`'listening'` event. See also [`net.Server.listen(path)`][]. ### server.listen(port[, hostname][, backlog][, callback])