Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-06-05 20:48:00 +0300
committerRich Trott <rtrott@gmail.com>2020-06-07 22:36:41 +0300
commite233d856862008902e701fec92026741ad898f13 (patch)
treedef1ed2c1d12161541e0f99dd23f6d3af56c8d42 /doc/api/events.md
parentdf30c9e6c03674a99da57cb1bf781c71f0eb0e4f (diff)
doc: remove "currently" from events.md
PR-URL: https://github.com/nodejs/node/pull/33756 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api/events.md')
-rw-r--r--doc/api/events.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/events.md b/doc/api/events.md
index 6929e8fa9cf..7b641138953 100644
--- a/doc/api/events.md
+++ b/doc/api/events.md
@@ -944,7 +944,7 @@ added: REPLACEME
The `EventTarget` and `Event` objects are a Node.js-specific implementation
of the [`EventTarget` Web API][] that are exposed by some Node.js core APIs.
-Neither the `EventTarget` nor `Event` classes are currently available for end
+Neither the `EventTarget` nor `Event` classes are available for end
user code to create.
```js
@@ -1099,7 +1099,7 @@ added: REPLACEME
-->
Returns an array containing the current `EventTarget` as the only entry or
-empty if the event is not currently being dispatched. This is not used in
+empty if the event is not being dispatched. This is not used in
Node.js and is provided purely for completeness.
#### `event.currentTarget`
@@ -1107,7 +1107,7 @@ Node.js and is provided purely for completeness.
added: REPLACEME
-->
-* Type: {EventTarget} The `EventTarget` currently dispatching the event.
+* Type: {EventTarget} The `EventTarget` dispatching the event.
Alias for `event.target`.
@@ -1161,7 +1161,7 @@ This is not used in Node.js and is provided purely for completeness.
added: REPLACEME
-->
-* Type: {EventTarget} The `EventTarget` currently dispatching the event.
+* Type: {EventTarget} The `EventTarget` dispatching the event.
Alias for `event.target`.
@@ -1184,7 +1184,7 @@ This is not used in Node.js and is provided purely for completeness.
added: REPLACEME
-->
-* Type: {EventTarget} The `EventTarget` currently dispatching the event.
+* Type: {EventTarget} The `EventTarget` dispatching the event.
#### `event.timeStamp`
<!-- YAML
@@ -1310,7 +1310,7 @@ added: REPLACEME
* Returns: {string[]}
Node.js-specific extension to the `EventTarget` class that returns an array
-of event `type` names for which event listeners are currently registered.
+of event `type` names for which event listeners are registered.
#### `nodeEventTarget.listenerCount(type)`
<!-- YAML