summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.dom.d.ts
diff options
context:
space:
mode:
authorJérôme Benoit <jerome.benoit@piment-noir.org>2023-10-23 14:34:37 +0200
committerGitHub <noreply@github.com>2023-10-23 14:34:37 +0200
commit9df36b33c6aa250daa200167eb0e1b9d6d738da1 (patch)
tree01c3b3770d4dee3bf82b55fb6b98c62ea831735e /cli/tsc/dts/lib.dom.d.ts
parent9f9c3d9048108200a888c508328d2a19cbbd6164 (diff)
docs(event): fixlets to code comments (#20944)
Diffstat (limited to 'cli/tsc/dts/lib.dom.d.ts')
-rw-r--r--cli/tsc/dts/lib.dom.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.dom.d.ts b/cli/tsc/dts/lib.dom.d.ts
index 94495d303..38c75781d 100644
--- a/cli/tsc/dts/lib.dom.d.ts
+++ b/cli/tsc/dts/lib.dom.d.ts
@@ -8209,7 +8209,7 @@ interface EventTarget {
*/
addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;
/**
- * Dispatches a synthetic event event to target 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)
*/
@@ -27428,7 +27428,7 @@ declare function scrollTo(x: number, y: number): void;
declare function stop(): void;
declare function toString(): string;
/**
- * Dispatches a synthetic event event to target 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)
*/