Skip to content

Commit 3c5ae76

Browse files
committed
Address reviewer's comment
1 parent e3553eb commit 3c5ae76

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/url.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -251,15 +251,15 @@ const myURL = new URL('https://example.org:81/foo');
251251
console.log(myURL.hostname);
252252
// Prints example.org
253253

254-
// Setting an invalid hostname is ignored:
255-
myURL.hostname = 'example.com:82';
254+
// Setting the hostname does not change the port
255+
myURL.hostname = 'example.com';
256256
console.log(myURL.href);
257-
// Prints https://example.org:81/foo
257+
// Prints https://example.com:81/foo
258258

259259
// Use myURL.host to change the hostname and port
260-
myURL.host = 'example.com:82';
260+
myURL.host = 'example.org:82';
261261
console.log(myURL.href);
262-
// Prints https://example.com:82/foo
262+
// Prints https://example.org:82/foo
263263
```
264264

265265
Invalid host name values assigned to the `hostname` property are ignored.

0 commit comments

Comments
 (0)