diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-03-22 19:34:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 19:34:14 -0600 |
commit | f69e4794d2d016c8cdbf4a4de8affd0c92f2732c (patch) | |
tree | d1a722cb30385126af0408416095321381f4b041 /ext/web/02_event.js | |
parent | d06fdf6add1b3c55fc5f4a24956f17a363d513a4 (diff) |
chore: update ext/ code to only use ASCII (#18371)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/web/02_event.js')
-rw-r--r-- | ext/web/02_event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/02_event.js b/ext/web/02_event.js index f354bf182..347344b94 100644 --- a/ext/web/02_event.js +++ b/ext/web/02_event.js @@ -996,7 +996,7 @@ class EventTarget { // If signal is not null and its aborted flag is set, then return. return; } else { - // If listener’s signal is not null, then add the following abort + // If listener's signal is not null, then add the following abort // abort steps to it: Remove an event listener. signal.addEventListener("abort", () => { self.removeEventListener(type, callback, options); |