Skip to content
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
change url to nodejs.org host
  • Loading branch information
marzelin authored Oct 14, 2016
commit 918bb38779643adfc1b040fcd3349b7ba3da86f0
2 changes: 1 addition & 1 deletion doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ The `callback` is invoked with a single argument that is an instance of
JSON Fetching Example:

```js
http.get('http://jsonplaceholder.typicode.com/posts/1', (res) => {
http.get('http://nodejs.org/dist/index.json', (res) => {
const statusCode = res.statusCode;
const contentType = res.headers['content-type'];

Expand Down