Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b239f06

Browse filesBrowse files
deokjinkimjuanarbol
authored andcommitted
events: fix violation of symbol naming convention
Capital letter is followed after 'k' prefix. PR-URL: #45978 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
1 parent 96f1b2e commit b239f06
Copy full SHA for b239f06

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎lib/internal/event_target.js‎

Copy file name to clipboardExpand all lines: lib/internal/event_target.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const kEvents = Symbol('kEvents');
5656
const kIsBeingDispatched = Symbol('kIsBeingDispatched');
5757
const kStop = Symbol('kStop');
5858
const kTarget = Symbol('kTarget');
59-
const kHandlers = Symbol('khandlers');
59+
const kHandlers = Symbol('kHandlers');
6060
const kWeakHandler = Symbol('kWeak');
6161

6262
const kHybridDispatch = SymbolFor('nodejs.internal.kHybridDispatch');

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.