Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
docs: fix syntax error in "https" example
  • Loading branch information
TooTallNate committed Aug 24, 2012
1 parent 752ac32 commit 2d0c1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/https.markdown
Expand Up @@ -168,7 +168,7 @@ Example:

var https = require('https');

https.get('https://encrypted.google.com/' }, function(res) {
https.get('https://encrypted.google.com/', function(res) {
console.log("statusCode: ", res.statusCode);
console.log("headers: ", res.headers);

Expand Down

0 comments on commit 2d0c1da

Please sign in to comment.