summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorJérôme Benoit <jerome.benoit@sap.com>2023-11-20 12:34:01 +0100
committerGitHub <noreply@github.com>2023-11-20 17:04:01 +0530
commit0205cff83413371b6f85454c595ffe7058f44de2 (patch)
treed44f398f41e93102a38b90c67e3af9ac57de8f57 /cli/tsc
parent93c4c1a2c16f2db3051353d78989ffd29bf9e455 (diff)
docs: typo fixlet in worker type comment (#21268)
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.webworker.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.webworker.d.ts b/cli/tsc/dts/lib.webworker.d.ts
index 9450390be..b98cf2016 100644
--- a/cli/tsc/dts/lib.webworker.d.ts
+++ b/cli/tsc/dts/lib.webworker.d.ts
@@ -2628,7 +2628,7 @@ interface EventTarget {
*/
addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;
/**
- * Dispatches a synthetic event to target event and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
+ * Dispatches a synthetic event to event target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
*/