Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add URL.format() example #18888

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
doc: change backticks to single quotes
  • Loading branch information
zeke committed Feb 21, 2018
commit 03236173f0efe0b32381ab2901d338c39b0c3cc2
2 changes: 1 addition & 1 deletion doc/api/url.md
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ The `url.format()` method returns a formatted URL string derived from
```js
url.format({
protocol: 'https',
hostname: `example.com`,
hostname: 'example.com',
pathname: '/some/path',
query: {
page: 1,
Expand Down