From 158194e41e8f0feaa82a854003b952e25d959ceb Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 9 Feb 2018 14:14:28 -0500 Subject: [PATCH 1/3] doc: add history for url.parse --- doc/api/url.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/api/url.md b/doc/api/url.md index c6463d75dcc9f1..1292abe0de3544 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -1007,6 +1007,11 @@ The formatting process operates as follows: ### url.parse(urlString[, parseQueryString[, slashesDenoteHost]]) * `urlString` {string} The URL string to parse. From c920a6da84f9140260f50380680ea07bcf3be764 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 9 Feb 2018 14:25:50 -0500 Subject: [PATCH 2/3] doc: change wording on change description --- 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 1292abe0de3544..0df8cf06bad31b 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -1010,8 +1010,8 @@ added: v0.1.25 changes: - version: v9.0.0 pr-url: https://github.com/nodejs/node/pull/13606 - description: The returned URL object `search` property is now null when - no query string is present. + description: The `search` property on the returned URL object is now null + when no query string is present. --> * `urlString` {string} The URL string to parse. From baeff0bcf0a5a935df97a63004e67c47c26085a3 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 9 Feb 2018 15:38:18 -0500 Subject: [PATCH 3/3] doc: add backticks around `null` --- 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 0df8cf06bad31b..843c4b544681ff 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -1010,7 +1010,7 @@ added: v0.1.25 changes: - version: v9.0.0 pr-url: https://github.com/nodejs/node/pull/13606 - description: The `search` property on the returned URL object is now null + description: The `search` property on the returned URL object is now `null` when no query string is present. -->