diff --git a/doc/api/url.md b/doc/api/url.md index 3c524a17a4ff75..c738bbbb4028f6 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -490,7 +490,7 @@ For instance, changing from `http` to `https` works: const u = new URL('http://example.org'); u.protocol = 'https'; console.log(u.href); -// https://example.org +// https://example.org/ ``` However, changing from `http` to a hypothetical `fish` protocol does not @@ -500,7 +500,7 @@ because the new protocol is not special. const u = new URL('http://example.org'); u.protocol = 'fish'; console.log(u.href); -// http://example.org +// http://example.org/ ``` Likewise, changing from a non-special protocol to a special protocol is also