From 0fb6209d5ebe5752ad5b5f63a71073914bc3b23f Mon Sep 17 00:00:00 2001 From: roshanigugale06 Date: Tue, 24 Mar 2026 14:21:53 +0530 Subject: [PATCH] Fix #43519: Improve clarity of dispatchEvent() return value --- files/en-us/web/api/eventtarget/dispatchevent/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/eventtarget/dispatchevent/index.md b/files/en-us/web/api/eventtarget/dispatchevent/index.md index 71250dc401a9929..d21d68c95f53eaf 100644 --- a/files/en-us/web/api/eventtarget/dispatchevent/index.md +++ b/files/en-us/web/api/eventtarget/dispatchevent/index.md @@ -37,7 +37,7 @@ dispatchEvent(event) ### Return value -`false` if `event` is cancelable, and at least one of the event handlers which received `event` called {{domxref("Event.preventDefault()")}}. Otherwise `true`. +The `dispatchEvent()` method returns `false` if the event is cancelable and at least one of the event listeners calls {{domxref("Event.preventDefault()")}}. Otherwise, it returns `true`. ### Exceptions