From 2fa4e148b69cea76fe58f754b40315d5b579024a Mon Sep 17 00:00:00 2001 From: James M Snell Date: Tue, 21 Dec 2021 11:28:35 -0800 Subject: [PATCH] [Squash] oops MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gerhard Stöbich --- doc/api/events.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/events.md b/doc/api/events.md index 52161a323ce246..42433f6299f949 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -1194,7 +1194,7 @@ const ee2 = new EventEmitter(); // 'foo' listeners on ordinary EventEmitters that do not track async // context, however, run in the same async context as the emit(). -ee1.on('foo', () => { +ee2.on('foo', () => { notStrictEqual(executionAsyncId(), ee2.asyncId()); notStrictEqual(triggerAsyncId(), ee2.triggerAsyncId()); });