Skip to content

Commit 73ea854

Browse files
committed
Merge pull request sayar#5 from dashrendar102/master
Fixed comment that said we're showing the Google homepage from bing.com
2 parents 997674f + 18e89a4 commit 73ea854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10_Requests/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var fs = require("fs");
33
//Example 1 : Let's grab a page
44
request("http://www.bing.com", function(error, response, body) {
55
if (!error && response.statusCode == 200) {
6-
console.log(body) // Show the HTML for the Google homepage.
6+
console.log(body) // Show the HTML for the Bing homepage.
77
}
88

99
});

0 commit comments

Comments
 (0)