Skip to content

Commit 7f7f135

Browse files
committed
net: fix typo
`SocketAddress.prototype.construtor` -> `SocketAddress.prototype.constructor`. Fixes: #38125
1 parent 6986fa0 commit 7f7f135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/socketaddress.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class InternalSocketAddress extends JSTransferable {
146146
}
147147

148148
InternalSocketAddress.prototype.constructor =
149-
SocketAddress.prototype.construtor;
149+
SocketAddress.prototype.constructor;
150150
ObjectSetPrototypeOf(InternalSocketAddress.prototype, SocketAddress.prototype);
151151

152152
module.exports = {

0 commit comments

Comments
 (0)