From ea121c9a0e162a83beeae62ed9e5a7911877bcbc Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Fri, 2 Aug 2024 13:26:54 +0200 Subject: docs: fix typos (#24820) This PR fixes various typos I spotted in the project. --- ext/node/polyfills/internal_binding/handle_wrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/node/polyfills/internal_binding') 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); } -- cgit v1.2.3