From 0640517a919da3b0dae03a4ddf2f459c3bbfdb9c Mon Sep 17 00:00:00 2001
From: Ryan
Date: Tue, 30 Jun 2009 15:56:52 +0200
Subject: [PATCH] fix example on website
---
website/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/index.html b/website/index.html
index 965da7a4d3a..02c8d9ed6c0 100644
--- a/website/index.html
+++ b/website/index.html
@@ -41,7 +41,7 @@
-new node.http.Server(function (req, res) {
+node.http.createServer(function (req, res) {
setTimeout(function () {
res.sendHeader(200, [["Content-Type", "text/plain"]]);
res.sendBody("Hello World");