summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Rajlich <nathan@tootallnate.net>2012-08-24 16:11:55 -0700
committerNathan Rajlich <nathan@tootallnate.net>2012-08-24 16:11:55 -0700
commit2d0c1da975d13910700c2591339e64be229607ac (patch)
treed7eb27ea5b16dd7766edd75f3afaa7cfb8e42c23
parent752ac320ae48d266fdc5d61a3963857b8f343c10 (diff)
downloadnode-new-2d0c1da975d13910700c2591339e64be229607ac.tar.gz
docs: fix syntax error in "https" example
-rw-r--r--doc/api/https.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/https.markdown b/doc/api/https.markdown
index 13691d5b3d..e2c9862a09 100644
--- a/doc/api/https.markdown
+++ b/doc/api/https.markdown
@@ -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);