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:
authorRich Trott <rtrott@gmail.com>2019-06-20 22:35:52 +0300
committerRich Trott <rtrott@gmail.com>2019-06-23 17:07:30 +0300
commitecead5f61e2b75ed4f6295cd35744157afd3c8ab (patch)
tree395228bcee9ca96238c8a5029599c9c92453df19 /doc/api/url.md
parente05f7228c87b583f8aebcc0c4f3b89cfb5a5e04c (diff)
doc: remove "note that" from url.md
Refs: https://github.com/nodejs/remark-preset-lint-node/pull/16 PR-URL: https://github.com/nodejs/node/pull/28329 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/url.md')
-rw-r--r--doc/api/url.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/url.md b/doc/api/url.md
index 5e043515b4e..94551f162b8 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -170,7 +170,7 @@ console.log(myURL.href);
```
Invalid URL characters included in the value assigned to the `hash` property
-are [percent-encoded][]. Note that the selection of which characters to
+are [percent-encoded][]. The selection of which characters to
percent-encode may vary somewhat from what the [`url.parse()`][] and
[`url.format()`][] methods would produce.
@@ -276,7 +276,7 @@ console.log(myURL.href);
```
Invalid URL characters included in the value assigned to the `password` property
-are [percent-encoded][]. Note that the selection of which characters to
+are [percent-encoded][]. The selection of which characters to
percent-encode may vary somewhat from what the [`url.parse()`][] and
[`url.format()`][] methods would produce.
@@ -297,7 +297,7 @@ console.log(myURL.href);
```
Invalid URL characters included in the value assigned to the `pathname`
-property are [percent-encoded][]. Note that the selection of which characters
+property are [percent-encoded][]. The selection of which characters
to percent-encode may vary somewhat from what the [`url.parse()`][] and
[`url.format()`][] methods would produce.
@@ -373,7 +373,7 @@ console.log(myURL.port);
// Prints 1234
```
-Note that numbers which contain a decimal point,
+Numbers which contain a decimal point,
such as floating-point numbers or numbers in scientific notation,
are not an exception to this rule.
Leading numbers up to the decimal point will be set as the URL's port,
@@ -460,7 +460,7 @@ console.log(myURL.href);
```
Any invalid URL characters appearing in the value assigned the `search`
-property will be [percent-encoded][]. Note that the selection of which
+property will be [percent-encoded][]. The selection of which
characters to percent-encode may vary somewhat from what the [`url.parse()`][]
and [`url.format()`][] methods would produce.
@@ -490,7 +490,7 @@ console.log(myURL.href);
```
Any invalid URL characters appearing in the value assigned the `username`
-property will be [percent-encoded][]. Note that the selection of which
+property will be [percent-encoded][]. The selection of which
characters to percent-encode may vary somewhat from what the [`url.parse()`][]
and [`url.format()`][] methods would produce.