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: update message.url example in http.IncomingMessage #30830

Closed
wants to merge 3 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: replace specific strings with variables
Co-Authored-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
saitolume and Trott authored Dec 18, 2019
commit ab5561e1155db813800f392d9b6a6ba0dec8bdd9
2 changes: 1 addition & 1 deletion doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,7 @@ When `request.url` is `'/status?name=ryan'` and

```console
$ node
> new URL('/status?name=ryan', 'localhost:3000')
> new URL(request.url, request.headers.host)
URL {
href: 'http://localhost:3000/status?name=ryan',
origin: 'http://localhost:3000',
Expand Down