From cce0e80d26d72809f3d0477685efd97b1c72d250 Mon Sep 17 00:00:00 2001 From: Deokjin Kim Date: Wed, 21 Dec 2022 13:36:21 +0900 Subject: [PATCH] doc: fix wrong output of example in `url.password` Tailing slash of url.href is ommited. --- doc/api/url.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/url.md b/doc/api/url.md index ba80ec96d3d38b..389571ee94fba9 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -332,7 +332,7 @@ console.log(myURL.password); myURL.password = '123'; console.log(myURL.href); -// Prints https://abc:123@example.com +// Prints https://abc:123@example.com/ ``` Invalid URL characters included in the value assigned to the `password` property