summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal_binding
diff options
context:
space:
mode:
authorAndreas Deininger <andreas@deininger.net>2024-08-02 13:26:54 +0200
committerGitHub <noreply@github.com>2024-08-02 13:26:54 +0200
commitea121c9a0e162a83beeae62ed9e5a7911877bcbc (patch)
tree595186262a70cbdc22c067a9d5815a51103c25fc /ext/node/polyfills/internal_binding
parentbcdf600ae40af8880d9c6d8e0c64179de274290f (diff)
docs: fix typos (#24820)
This PR fixes various typos I spotted in the project.
Diffstat (limited to 'ext/node/polyfills/internal_binding')
-rw-r--r--ext/node/polyfills/internal_binding/handle_wrap.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/internal_binding/handle_wrap.ts b/ext/node/polyfills/internal_binding/handle_wrap.ts
index ef8457338..1b3036a7e 100644
--- a/ext/node/polyfills/internal_binding/handle_wrap.ts
+++ b/ext/node/polyfills/internal_binding/handle_wrap.ts
@@ -39,7 +39,7 @@ export class HandleWrap extends AsyncWrap {
close(cb: () => void = () => {}) {
this._onClose();
- // We need to delay 'cb' at least 2 ticks to avoid "close" event happenning before "error" event in net.Socket
+ // We need to delay 'cb' at least 2 ticks to avoid "close" event happening before "error" event in net.Socket
// See https://github.com/denoland/deno/pull/24656 for more information
nextTick(nextTick, cb);
}