Skip to content

Commit b37d53a

Browse files
recrackdanielleadams
authored andcommitted
doc: fix myUrl is not defined in url
Fixes a typo in the variable name in the URL code example in doc. Renames `myUrl` to `myURL` for consistency and readability. PR-URL: #46968 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Harshitha K P <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Akhil Marsonya <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Deokjin Kim <[email protected]>
1 parent 80b4e6d commit b37d53a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/url.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -554,14 +554,14 @@ instance, the `URL` object will not percent encode the ASCII tilde (`~`)
554554
character, while `URLSearchParams` will always encode it:
555555

556556
```js
557-
const myUrl = new URL('https://example.org/abc?foo=~bar');
557+
const myURL = new URL('https://example.org/abc?foo=~bar');
558558

559-
console.log(myUrl.search); // prints ?foo=~bar
559+
console.log(myURL.search); // prints ?foo=~bar
560560

561561
// Modify the URL via searchParams...
562-
myUrl.searchParams.sort();
562+
myURL.searchParams.sort();
563563

564-
console.log(myUrl.search); // prints ?foo=%7Ebar
564+
console.log(myURL.search); // prints ?foo=%7Ebar
565565
```
566566

567567
#### `url.username`
@@ -1271,7 +1271,7 @@ console.log(urlToHttpOptions(myURL));
12711271
const { urlToHttpOptions } = require('node:url');
12721272
const myURL = new URL('https://a:b@測試?abc#foo');
12731273

1274-
console.log(urlToHttpOptions(myUrl));
1274+
console.log(urlToHttpOptions(myURL));
12751275
/*
12761276
{
12771277
protocol: 'https:',

0 commit comments

Comments
 (0)