Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNathan Rajlich <nathan@tootallnate.net>2012-08-25 03:11:55 +0400
committerNathan Rajlich <nathan@tootallnate.net>2012-08-25 03:11:55 +0400
commit2d0c1da975d13910700c2591339e64be229607ac (patch)
treed7eb27ea5b16dd7766edd75f3afaa7cfb8e42c23 /doc
parent752ac320ae48d266fdc5d61a3963857b8f343c10 (diff)
docs: fix syntax error in "https" example
Diffstat (limited to 'doc')
-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 13691d5b3d0..e2c9862a090 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);