From 868f7e7a287c4709c541c077f3e2303f45b1f072 Mon Sep 17 00:00:00 2001 From: MetaHack Date: Mon, 9 Jan 2012 12:43:57 +0800 Subject: [PATCH] fixed comment typos in examples/http/proxy-https-to-http.js and proxy-https-to-https.js, lines 37 and 46 --- examples/http/proxy-https-to-http.js | 4 ++-- examples/http/proxy-https-to-https.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/http/proxy-https-to-http.js b/examples/http/proxy-https-to-http.js index 75b986b..d6fce41 100644 --- a/examples/http/proxy-https-to-http.js +++ b/examples/http/proxy-https-to-http.js @@ -34,7 +34,7 @@ var https = require('https'), var opts = helpers.loadHttps(); // -// Crete the target HTTPS server +// Create the target HTTPS server // http.createServer(function (req, res) { res.writeHead(200, { 'Content-Type': 'text/plain' }); @@ -43,7 +43,7 @@ http.createServer(function (req, res) { }).listen(8000); // -// Create the proxy server listening on port 443. +// Create the proxy server listening on port 443 // httpProxy.createServer(8000, 'localhost', { https: opts diff --git a/examples/http/proxy-https-to-https.js b/examples/http/proxy-https-to-https.js index bd54e88..9acef1f 100644 --- a/examples/http/proxy-https-to-https.js +++ b/examples/http/proxy-https-to-https.js @@ -34,7 +34,7 @@ var https = require('https'), var opts = helpers.loadHttps(); // -// Crete the target HTTPS server +// Create the target HTTPS server // https.createServer(opts, function (req, res) { res.writeHead(200, { 'Content-Type': 'text/plain' }); @@ -43,7 +43,7 @@ https.createServer(opts, function (req, res) { }).listen(8000); // -// Create the proxy server listening on port 443. +// Create the proxy server listening on port 443 // httpProxy.createServer(8000, 'localhost', { https: opts,