From 29d509c100bcc259824bb299917286eda01dcdac Mon Sep 17 00:00:00 2001 From: Deokjin Kim Date: Thu, 29 Dec 2022 06:19:34 +0900 Subject: [PATCH] doc: fix wrong output of example in `url.protocol` Tailing slash of url.href is ommited. PR-URL: https://github.com/nodejs/node/pull/45954 Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- doc/api/url.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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