<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in PowerShell console (Windows) Subsystem: if known, please specify affected core module name --> * 15 * Irrelevant * Irrelevant ### What steps will reproduce the bug? The new SocketAddress class has a typo: ` InternalSocketAddress.prototype.constructor = SocketAddress.prototype.construtor; ` should be: ` InternalSocketAddress.prototype.constructor = SocketAddress.prototype.constructor; `