Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/url.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/url.md b/doc/api/url.md
index 832a88a9f75..3d4500aa385 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -215,7 +215,7 @@ myURL.hostname = 'example.com:82';
console.log(myURL.href);
// Prints https://example.com:81/foo
-// Use, myURL.host to change the hostname and port
+// Use myURL.host to change the hostname and port
myURL.host = 'example.org:82';
console.log(myURL.href);
// Prints https://example.org:82/foo