Skip to content

Commit

Permalink
doc: listed server.listen() parametes in http.md and some corrections
Browse files Browse the repository at this point in the history
doc/api/http.md: listed server.listen() parameters
  • Loading branch information
vipul kumar committed Sep 4, 2021
1 parent f26c2ce commit a026b99
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/api/fs.md
Expand Up @@ -2660,7 +2660,7 @@ changes:
Asynchronously creates a directory.
The callback is given a possible exception and, if `recursive` is `true`, the
first directory path created, `(err, [path])`.
first directory path created, `(err[, path])`.
`path` can still be `undefined` when `recursive` is `true`, if no directory was
created.
Expand Down Expand Up @@ -4886,7 +4886,7 @@ Returns the number of `bytesRead`.
For detailed information, see the documentation of the asynchronous version of
this API: [`fs.read()`][].
### `fs.readSync(fd, buffer, [options])`
### `fs.readSync(fd, buffer[, options])`
<!-- YAML
added:
- v13.13.0
Expand Down
6 changes: 5 additions & 1 deletion doc/api/http.md
Expand Up @@ -1290,7 +1290,11 @@ event is emitted on the server object, and (by default) the socket is destroyed.
See [`server.timeout`][] for more information on how timeout behavior can be
customized.

### `server.listen()`
### `server.listen(port[, host][, callback])`

* `port` {number}
* `host` {string}
* `callback` {Function}

Starts the HTTP server listening for connections.
This method is identical to [`server.listen()`][] from [`net.Server`][].
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Expand Up @@ -2041,7 +2041,7 @@ await finished(compose(s1, s2, s3));
console.log(res); // prints 'HELLOWORLD'
```

### `stream.Readable.from(iterable, [options])`
### `stream.Readable.from(iterable[, options])`
<!-- YAML
added:
- v12.3.0
Expand Down

0 comments on commit a026b99

Please sign in to comment.