diff --git a/doc/api/events.md b/doc/api/events.md index 9e6cd371bba506..07a4774c04d3c8 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -404,7 +404,7 @@ added: v0.3.0 * `eventName` {string|symbol} The name of the event. * `listener` {Function} The callback function -Adds a **one time** `listener` function for the event named `eventName`. The +Adds a **one-time** `listener` function for the event named `eventName`. The next time `eventName` is triggered, this listener is removed and then invoked. ```js @@ -459,7 +459,7 @@ added: v6.0.0 * `eventName` {string|symbol} The name of the event. * `listener` {Function} The callback function -Adds a **one time** `listener` function for the event named `eventName` to the +Adds a **one-time** `listener` function for the event named `eventName` to the *beginning* of the listeners array. The next time `eventName` is triggered, this listener is removed, and then invoked. diff --git a/doc/api/http.md b/doc/api/http.md index be26d882669a84..fac7798071eee1 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1570,7 +1570,7 @@ This function allows one to transparently issue requests. `options` can be an object or a string. If `options` is a string, it is automatically parsed with [`url.parse()`][]. -The optional `callback` parameter will be added as a one time listener for +The optional `callback` parameter will be added as a one-time listener for the [`'response'`][] event. `http.request()` returns an instance of the [`http.ClientRequest`][] diff --git a/doc/api/net.md b/doc/api/net.md index 3308fc27f0edef..5c9c3dea6051b4 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -694,7 +694,7 @@ or [`destroy()`][] the socket. If `timeout` is 0, then the existing idle timeout is disabled. -The optional `callback` parameter will be added as a one time listener for the +The optional `callback` parameter will be added as a one-time listener for the [`'timeout'`][] event. ### socket.unref()