X Tutup
The Wayback Machine - https://web.archive.org/web/20220419160027/https://github.com/nodejs/node/commit/7869761c2e
Skip to content
Permalink
Browse files
net: fix typo
`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 7869761c2e535305f30e1c0bb19bf3f6130c43bb
Showing with 1 addition and 1 deletion.
  1. +1 −1 lib/internal/socketaddress.js
@@ -146,7 +146,7 @@ class InternalSocketAddress extends JSTransferable {
}

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

module.exports = {

0 comments on commit 7869761

Please sign in to comment.
X Tutup