Skip to content

Commit

Permalink
net: fix typo
Browse files Browse the repository at this point in the history
`construtor` -> `constructor`.

Fixes: #38125

PR-URL: #38127
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
  • Loading branch information
lpinca authored and aduh95 committed Apr 8, 2021
1 parent 0fa579a commit 7869761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/socketaddress.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class InternalSocketAddress extends JSTransferable {
}

InternalSocketAddress.prototype.constructor =
SocketAddress.prototype.construtor;
SocketAddress.prototype.constructor;
ObjectSetPrototypeOf(InternalSocketAddress.prototype, SocketAddress.prototype);

module.exports = {
Expand Down

0 comments on commit 7869761

Please sign in to comment.